/* Terms & Conditions Page Styles */

.terms-hero {
    background: linear-gradient(135deg, #AC5512 0%, #d4691b 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
}

.terms-hero h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-family: 'Figtree', sans-serif;
    font-weight: 800;
}

.terms-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 60px;
    font-family: 'Inter', sans-serif;
}

.terms-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.terms-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.terms-section:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
}

.terms-section h2 {
    color: #AC5512;
    margin-bottom: 20px;
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.terms-section h3 {
    color: #333;
    margin: 25px 0 15px 0;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
}

.terms-section p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.terms-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.terms-section li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
}

.terms-section strong {
    color: #333;
    font-weight: 600;
}

/* Quick Navigation */
.terms-toc {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 4px solid #AC5512;
}

.terms-toc h3 {
    color: #AC5512;
    margin-bottom: 15px;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
}

.terms-toc ul {
    list-style-type: decimal;
    padding-left: 20px;
    columns: 2;
}

.terms-toc li {
    margin-bottom: 8px;
    break-inside: avoid;
}

.terms-toc a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-toc a:hover {
    color: #AC5512;
    text-decoration: underline;
}

/* Important Notice */
.important-notice {
    background: linear-gradient(135deg, #fff3f3 0%, #ffe6e6 100%);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid #e74c3c;
}

.important-notice h3 {
    color: #e74c3c;
    margin-bottom: 10px;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
}

.important-notice p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Agreement Checkbox (if needed for forms) */
.agreement-check {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border: 1px solid #e0e0e0;
}

.agreement-check label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: 600;
    color: #333;
}

.agreement-check input[type="checkbox"] {
    margin-top: 3px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terms-content {
        padding: 25px 20px;
    }
    
    .terms-hero h1 {
        font-size: 2rem;
    }
    
    .terms-section h2 {
        font-size: 1.3rem;
    }
    
    .terms-section h3 {
        font-size: 1.1rem;
    }
    
    .terms-toc ul {
        columns: 1;
    }
}

/* Print Styles */
@media print {
    .terms-hero {
        background: #AC5512 !important;
        color: black !important;
    }
    
    .terms-container {
        box-shadow: none !important;
        padding: 0 !important;
    }
    
    .terms-toc {
        display: none;
    }
}
