/* ===== PRIVACY POLICY STYLES ===== */
.privacy-policy {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 100vh;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    color: #333;
}

.privacy-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-date {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #666;
}

.privacy-intro {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    border-left: 5px solid #667eea;
}

.privacy-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    color: #555;
}

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

.privacy-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
}

.privacy-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

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

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

.privacy-section li {
    list-style: none;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.privacy-section li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

.privacy-contact {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    border: 2px solid #667eea;
}

.privacy-contact h3 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.privacy-contact p {
    margin-bottom: 10px;
    color: #555;
}

@media (max-width: 768px) {
    .privacy-policy {
        padding: 100px 0 60px;
    }
    
    .privacy-content {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .privacy-content h1 {
        font-size: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-intro,
    .privacy-contact {
        padding: 20px;
    }
} 