/* Privacy Policy Styles */

/* Import base styles */
@import url('../styles.css');

/* Privacy-specific styles */
.privacy-main {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding-top: 80px;
    padding-bottom: 4rem;
}

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.privacy-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #a855f7, #3b82f6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease-out;
}

.privacy-effective {
    color: #94a3b8;
    font-size: 1.1rem;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.privacy-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.privacy-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.privacy-section h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #a855f7;
    display: inline-block;
}

.privacy-section h3 {
    color: #e2e8f0;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
}

.privacy-section h4 {
    color: #cbd5e1;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.25rem 0 0.75rem 0;
}

.privacy-section p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-section ul {
    color: #cbd5e1;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.privacy-section a {
    color: #a855f7;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-section a:hover {
    color: #c084fc;
    text-decoration: underline;
}

.privacy-section strong {
    color: #f1f5f9;
    font-weight: 600;
}

.contact-info {
    background: rgba(168, 85, 247, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid #a855f7;
    margin: 1rem 0;
}

.contact-info p {
    margin: 0;
    color: #e2e8f0;
}

.contact-info strong {
    color: #f1f5f9;
    display: block;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-container {
        padding: 0 1rem;
    }
    
    .privacy-title {
        font-size: 2.5rem;
    }
    
    .privacy-content {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section h3 {
        font-size: 1.3rem;
    }
    
    .privacy-section h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .privacy-main {
        padding-top: 70px;
    }
    
    .privacy-title {
        font-size: 2rem;
    }
    
    .privacy-content {
        padding: 1.5rem 1rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
    
    .privacy-section h2 {
        font-size: 1.4rem;
    }
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background: rgba(168, 85, 247, 0.3);
    color: white;
}

::-moz-selection {
    background: rgba(168, 85, 247, 0.3);
    color: white;
}