/* Privacy Policy Specific Styles */
.privacy-main {
    padding: 120px 0 60px;
    min-height: 100vh;
    background: var(--dark-bg);
}

.privacy-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.privacy-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.privacy-title i {
    font-size: 2.2rem;
    animation: pulse 2s infinite;
}

.privacy-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    font-weight: 500;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(10px);
}

.privacy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

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

.privacy-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.privacy-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.privacy-section h3 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin: 25px 0 15px;
    font-weight: 600;
}

.privacy-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

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

.privacy-section li {
    color: var(--text-gray);
    margin-bottom: 8px;
    line-height: 1.6;
    position: relative;
}

.privacy-section li::marker {
    color: var(--primary-color);
}

.contact-info {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    color: var(--text-light);
}

.contact-info strong {
    color: var(--primary-color);
    font-weight: 600;
}

.privacy-footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-main {
        padding: 100px 0 40px;
    }
    
    .privacy-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .privacy-content {
        padding: 25px;
        margin: 0 15px;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .privacy-header {
        margin: 0 15px 40px;
        padding: 30px 20px;
    }
    
    .privacy-title {
        font-size: 1.8rem;
    }
    
    .privacy-content {
        padding: 20px;
    }
    
    .contact-info {
        padding: 20px;
    }
}

/* Animation for sections */
.privacy-section {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease forwards;
}

.privacy-section:nth-child(1) { animation-delay: 0.1s; }
.privacy-section:nth-child(2) { animation-delay: 0.2s; }
.privacy-section:nth-child(3) { animation-delay: 0.3s; }
.privacy-section:nth-child(4) { animation-delay: 0.4s; }
.privacy-section:nth-child(5) { animation-delay: 0.5s; }
.privacy-section:nth-child(6) { animation-delay: 0.6s; }
.privacy-section:nth-child(7) { animation-delay: 0.7s; }
.privacy-section:nth-child(8) { animation-delay: 0.8s; }
.privacy-section:nth-child(9) { animation-delay: 0.9s; }
.privacy-section:nth-child(10) { animation-delay: 1.0s; }
.privacy-section:nth-child(11) { animation-delay: 1.1s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
