/* Terms Hero */
.terms-hero {
    background: linear-gradient(135deg, #524594 0%, #3d3470 100%);
    color: #FAF2E0;
    text-align: center;
    padding: 8rem 2rem 4rem;
    margin-top: 80px;
}

.terms-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.terms-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Terms Sections */
.terms-section {
    padding: 4rem 0;
    background: #fff;
}

.terms-section-alt {
    background: #FAF2E0;
}

/* Terms Card */
.terms-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    max-width: 800px;
    margin: 0 auto;
}

.terms-section-alt .terms-card {
    border: 2px solid #e8e8e8;
}

.terms-card h2 {
    color: #524594;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

/* Promo Card */
.promo-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #FAF2E0;
}

.promo-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.promo-header h2 {
    margin-bottom: 0.8rem;
}

.promo-validity {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Terms Content */
.terms-content h3 {
    color: #524594;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
}

.terms-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.terms-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.terms-content li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

/* External Link */
.terms-external-link {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: #524594;
    color: #FAF2E0;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.terms-external-link:hover {
    background: #3d3470;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-hero {
        padding: 6rem 1rem 3rem;
    }

    .terms-hero h1 {
        font-size: 2.2rem;
    }

    .terms-card {
        padding: 2rem 1.5rem;
    }
}