/**
 * Privacy Policy Page Styles
 */

.privacy-policy {
    padding: 120px 0 80px;
    background: #f8f9fa;
    min-height: 100vh;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.privacy-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f2f5;
}

.privacy-header h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.privacy-header p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

.last-updated {
    background: #e3f2fd;
    color: #1976d2;
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 15px;
    font-weight: 500;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    color: #1a1a1a;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
}

.privacy-section h2 i {
    color: #007bff;
    font-size: 1.5rem;
}

.privacy-section h3 {
    color: #333;
    font-size: 1.3rem;
    margin: 25px 0 15px;
    font-weight: 600;
}

.privacy-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

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

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

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

.contact-info-box {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
}

.contact-info-box h4 {
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-info-box p {
    margin: 8px 0;
    color: #555;
}

.contact-info-box a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.contact-info-box a:hover {
    text-decoration: underline;
}

.table-of-contents {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
}

.table-of-contents h3 {
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 600;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
}

.table-of-contents li {
    margin-bottom: 10px;
}

.table-of-contents a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.table-of-contents a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.highlight-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.highlight-box h4 {
    color: #856404;
    margin-bottom: 10px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .privacy-policy {
        padding: 100px 0 60px;
    }

    .privacy-container {
        padding: 30px;
        margin: 0 15px;
    }

    .privacy-header h1 {
        font-size: 2rem;
    }

    .privacy-section h2 {
        font-size: 1.5rem;
    }
}

