/* Privacy Page Styles */
.privacy-page {
    padding: 120px 0 80px;
    background: #f8f9fa;
    min-height: 100vh;
}

.privacy-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.privacy-header h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.privacy-header p {
    font-size: 18px;
    color: #7f8c8d;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.privacy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #ecf0f1;
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-left: 15px;
}

.privacy-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #3498db;
    border-radius: 2px;
}

.privacy-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 15px;
}

.privacy-section ul {
    list-style: none;
    padding-left: 0;
}

.privacy-section ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.privacy-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 20px;
}

.highlight-note {
    background: #e3f2fd;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #3498db;
    margin-top: 20px;
}

.contact-info {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #2c3e50;
}

.contact-info i {
    color: #C8A45A;
    font-size: 18px;
    width: 20px;
}

.last-updated {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 2px solid #ecf0f1;
}

.last-updated p {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-page {
        padding: 100px 0 60px;
    }

    .privacy-header h1 {
        font-size: 32px;
    }

    .privacy-content {
        padding: 30px 20px;
    }

    .privacy-section h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .privacy-header h1 {
        font-size: 26px;
    }

    .privacy-section h2 {
        font-size: 20px;
    }

    .privacy-content {
        padding: 20px 15px;
    }
}