/* Privacy Policy Page Styles */

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

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

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

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

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

.last-updated,
.effective-date {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #AC5512;
}

.last-updated p,
.effective-date p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

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

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

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

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

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

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

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

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

.contact-info {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
    border-left: 4px solid #AC5512;
}

.contact-info p {
    margin: 0;
    line-height: 1.8;
}

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

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

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

.toc li {
    margin-bottom: 8px;
}

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

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

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

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