.terms-hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    min-height: 200px;
    position: relative;
    overflow: hidden;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.terms-hero .container {
    position: relative;
    z-index: 2;
}

.terms-section-card {
    border: none;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: white;
    height: 100%;
}

.terms-section-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.terms-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.terms-title {
    color: #007bff;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.terms-content {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

.restriction-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.restriction-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    color: #6c757d;
    line-height: 1.6;
}

.restriction-list li:before {
    content: '✗';
    position: absolute;
    left: 0;
    top: 0;
    color: #dc3545;
    font-weight: bold;
    font-size: 16px;
}

.restriction-list li:last-child {
    margin-bottom: 0;
}

.license-card {
    border-left: 4px solid #007bff;
    background: #f8f9fa;
    padding: 20px;
    margin-bottom: 16px;
    border-radius: 0 8px 8px 0;
}

.license-card h4 {
    color: #007bff;
    font-weight: 600;
    margin-bottom: 12px;
}

.license-badge {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}

.important-note {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    color: #212529;
    border-radius: 12px;
    padding: 20px;
    margin-top: 24px;
    border-left: 4px solid #d39e00;
}

.important-note h4 {
    color: #212529;
    font-weight: 600;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .terms-section-card {
        padding: 24px;
        margin-bottom: 16px;
    }
    
    .terms-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .terms-title {
        font-size: 1.25rem;
    }
}
