/* Privacy Policy Page Styles */

/* Global styles are inherited from main styles.css */

/* Header styles are inherited from main styles.css */

/* Page-specific body background */
body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Main Content */
.main-content {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

.privacy-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.privacy-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007aff, #5856d6, #af52de, #ff2d92);
}

.privacy-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.privacy-header h1 {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(45deg, #007aff, #5856d6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.privacy-header p {
    font-size: 18px;
    color: #6e6e73;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    border-left: 4px solid #007aff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.privacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.05) 0%, rgba(88, 86, 214, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.privacy-section:hover::before {
    opacity: 1;
}

.privacy-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 122, 255, 0.15);
    border-left-color: #5856d6;
}

.privacy-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.privacy-section h3 {
    font-size: 22px;
    font-weight: 600;
    color: #007aff;
    margin: 25px 0 15px 0;
    position: relative;
    z-index: 1;
}

.privacy-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #424245;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.privacy-section ul {
    margin: 15px 0;
    padding-left: 25px;
    position: relative;
    z-index: 1;
}

.privacy-section li {
    font-size: 16px;
    line-height: 1.7;
    color: #424245;
    margin-bottom: 8px;
    position: relative;
}

.privacy-section li::marker {
    color: #007aff;
}

.contact-info {
    background: linear-gradient(135deg, #007aff 0%, #5856d6 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(0deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(180deg); }
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.contact-info a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.contact-info a:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
    display: inline-block;
}

/* Footer styles are inherited from main styles.css */

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        gap: 20px;
    }
    
    .privacy-container {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .privacy-header h1 {
        font-size: 36px;
    }
    
    .privacy-section {
        padding: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .privacy-header h1 {
        font-size: 28px;
    }
    
    .privacy-section h2 {
        font-size: 24px;
    }
    
    .privacy-container {
        margin: 10px;
        padding: 20px 15px;
    }
}