/* ========================================
   TERMS OF USE PAGE STYLES
   ======================================== */

/* Hero Section */
.terms-hero {
    background: linear-gradient(135deg, var(--color-green-primary) 0%, var(--color-green-medium) 100%);
    padding: 80px 0;
    text-align: center;
}

.terms-hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-white-text);
    margin-bottom: 12px;
}

.terms-hero p {
    font-size: 18px;
    color: var(--color-white-text);
    opacity: 0.9;
    margin: 0;
}

/* Terms Content Section */
.terms-content {
    padding: 60px 0 80px;
    background: var(--color-white);
}

.terms-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* Terms Body */
.terms-body {
    max-width: 800px;
}

/* Notice Box */
.terms-notice {
    background: var(--color-brass-pale);
    border-left: 4px solid var(--color-brass);
    padding: 16px 20px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    margin-bottom: 40px;
}

.terms-notice p {
    margin: 0;
    font-size: 15px;
    color: var(--color-text-primary);
}

.terms-notice a {
    color: var(--color-green-primary);
    font-weight: 600;
}

/* Terms Sections */
.terms-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-border);
    scroll-margin-top: 100px;
}

.terms-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.terms-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 20px;
}

.terms-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.terms-section p:last-child {
    margin-bottom: 0;
}

.terms-section ul,
.terms-section ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.terms-section li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

/* Callout Box - For important legal text */
.terms-callout {
    background: var(--color-cream);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 24px;
    margin: 20px 0;
}

.terms-callout p,
.terms-callout li {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-primary);
}

.terms-callout ol {
    padding-left: 20px;
    margin-bottom: 0;
}

.terms-callout ol li {
    margin-bottom: 16px;
}

.terms-callout ol li:last-child {
    margin-bottom: 0;
}

/* Contact Box */
.terms-contact {
    background: var(--color-green-pale);
    border-radius: var(--border-radius);
    padding: 20px 24px;
    margin-top: 16px;
}

.terms-contact p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-primary);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .terms-hero {
        padding: 60px 0;
    }
    
    .terms-hero h1 {
        font-size: 32px;
    }
    
    .terms-content {
        padding: 40px 0 60px;
    }
    
    .terms-section h2 {
        font-size: 20px;
    }
    
    .terms-section p,
    .terms-section li {
        font-size: 15px;
    }
    
    .terms-callout {
        padding: 20px;
    }
    
    .terms-callout p,
    .terms-callout li {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .terms-hero h1 {
        font-size: 26px;
    }
    
    .terms-section {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    
    .terms-section h2 {
        font-size: 18px;
    }
}
