/* Privacy Policy Specific Styles */

.privacy-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #1a0a2e 0%, #2a0a3e 100%);
    text-align: center;
    position: relative;
}

.privacy-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 0, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.privacy-content {
    background: var(--dark);
    padding: 80px 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-section:last-of-type {
    border-bottom: none;
}

.policy-section h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.policy-section h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--secondary);
    font-size: 20px;
    margin: 30px 0 15px;
}

.policy-section p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy-section ul {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.policy-section ul li {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.policy-section ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 18px;
}

.policy-section ul li strong {
    color: var(--primary);
    font-weight: 600;
}

.policy-section a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.policy-section a:hover {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

.contact-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 10px;
    padding: 30px;
    margin-top: 20px;
}

.contact-box p {
    margin-bottom: 15px;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.policy-footer {
    background: rgba(255, 0, 255, 0.05);
    border: 1px solid rgba(255, 0, 255, 0.3);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin-top: 60px;
}

.policy-footer p {
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-footer p:last-child {
    margin-bottom: 0;
}

.policy-footer strong {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-header {
        padding: 120px 0 60px;
    }
    
    .privacy-content {
        padding: 60px 0;
    }
    
    .policy-section {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }
    
    .policy-section h2 {
        font-size: 24px;
    }
    
    .policy-section h3 {
        font-size: 18px;
    }
    
    .contact-box {
        padding: 20px;
    }
    
    .policy-footer {
        padding: 30px 20px;
    }
}
