/**
 * Terms & Conditions Page Styles
 */

/* ==========================================================================
   Hero Banner
   ========================================================================== */

.terms-hero {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.terms-hero-title {
    color: #5B21B6;
    font-size: var(--text-5xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    position: relative;
    z-index: 1;
}

.terms-hero-subtitle {
    color: #6b7280;
    font-size: var(--text-lg);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Content Section
   ========================================================================== */

.terms-section {
    padding: 60px 0 80px;
}

.terms-content {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Clauses
   ========================================================================== */

.terms-clauses {
    padding-left: 20px;
    margin-bottom: 0;
}

.terms-clauses > li {
    font-size: var(--text-sm);
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 16px;
}

.terms-clauses > li:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 991.98px) {
    .terms-hero {
        padding: 60px 0 40px;
    }

    .terms-hero-title {
        font-size: var(--text-4xl);
    }

    .terms-section {
        padding: 40px 0 60px;
    }

    .terms-content {
        padding: 30px;
    }
}

@media (max-width: 575.98px) {
    .terms-hero {
        padding: 50px 0 30px;
    }

    .terms-hero-title {
        font-size: var(--text-3xl);
    }

    .terms-hero-subtitle {
        font-size: var(--text-base);
    }

    .terms-content {
        padding: 20px;
        border-radius: var(--radius-lg);
    }

    .terms-clauses > li {
        font-size: var(--text-xs);
    }
}
