/* ========== PRIVACY POLICY SECTION ========== */
.privacy-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 2px solid #2d3748;
}

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

.privacy-header .last-updated {
    font-size: 0.9rem;
    color: #a0aec0;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.privacy-header p {
    font-size: 1.125rem;
    color: #cbd5e0;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid #2d3748;
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #48bb78;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.privacy-section h2::before {
    content: '';
    width: 4px;
    height: 1.75rem;
    background: linear-gradient(135deg, #48bb78, #38a169);
    border-radius: 2px;
}

.privacy-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #48bb78;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.privacy-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #48bb78;
    margin-bottom: 0.5rem;
}

.privacy-section p {
    color: #cbd5e0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.privacy-section ul {
    color: #cbd5e0;
    margin: 1rem 0;
    padding-left: 2rem;
    line-height: 1.7;
}

.privacy-section li {
    margin-bottom: 0.75rem;
}

.privacy-section li strong {
    color: #48bb78;
    font-weight: 600;
}

.privacy-section a {
    color: #48bb78;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-section a:hover {
    color: #38a169;
    text-decoration: underline;
}

.data-category,
.security-info,
.third-party-info,
.user-rights,
.compliance-info,
.permissions-info,
.updates-info,
.contact-info {
    background: rgba(72, 187, 120, 0.02);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 3px solid rgba(72, 187, 120, 0.3);
    margin-bottom: 2rem;
}

.permission-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 1rem;
}

.permission-item {
    background: rgba(139, 92, 246, 0.05);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 3px solid rgba(139, 92, 246, 0.3);
}

.permission-item h4 {
    color: #8b5cf6;
    margin-bottom: 0.75rem;
}

.permission-item p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.contact-method {
    background: rgba(34, 197, 94, 0.05);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 3px solid rgba(34, 197, 94, 0.3);
}

.contact-method h4 {
    color: #22c55e;
    margin-bottom: 0.75rem;
}

.legal-notice {
    background: rgba(246, 173, 85, 0.05);
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(246, 173, 85, 0.2);
    margin-top: 2rem;
}

.legal-notice h2 {
    color: #f6ad55;
    margin-bottom: 1rem;
}

.legal-notice p {
    color: #cbd5e0;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .privacy-content {
        padding: 1rem;
    }
    
    .privacy-header {
        padding: 1rem 0;
        margin-bottom: 2rem;
    }
    
    .privacy-header h1 {
        font-size: 2rem;
    }
    
    .privacy-section {
        margin-bottom: 2rem;
        padding: 1.5rem 0;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .privacy-section h2::before {
        height: 1.5rem;
    }
    
    .data-category,
    .security-info,
    .third-party-info,
    .user-rights,
    .compliance-info,
    .permissions-info,
    .updates-info,
    .contact-info {
        padding: 1rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .legal-notice {
        padding: 1.5rem;
    }
} 