/* ==========================================
   TERMS PAGE SPECIFIC STYLES
   Add this to your existing motus-styles-fixed.css
   ========================================== */

/* Terms Section */
.terms-section {
    padding: 120px 0 80px;
    background: var(--color-white);
    min-height: 100vh;
}

.terms-content {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 8px;
}

.terms-main-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-navy);
    margin-bottom: 3rem;
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--color-wine);
}

.terms-block {
    margin-bottom: 3rem;
}

.terms-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.terms-subsection-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.terms-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-grey);
    margin-bottom: 0.75rem;
    margin-top: 1rem;
}

.terms-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-grey);
    margin-bottom: 1rem;
}

.terms-text strong {
    font-weight: 700;
    color: var(--color-navy);
}

.terms-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-light-grey);
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-section {
        padding: 100px 0 60px;
    }
    
    .terms-content {
        padding: 2rem 1.5rem;
    }
    
    .terms-main-title {
        font-size: 2rem;
    }
    
    .terms-section-title {
        font-size: 1.25rem;
    }
    
    .terms-subsection-title {
        font-size: 1.125rem;
    }
}
