/* ==================== */
/* Privacy Policy Styles */
/* ==================== */

.privacy-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 200% 200%;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 135, 255, 0.3), transparent 50%);
    pointer-events: none;
}

.privacy-hero-content {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
}

.privacy-title {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 800;
    margin-bottom: 16px;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.privacy-subtitle {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 16px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.privacy-date {
    font-size: clamp(14px, 2vw, 16px);
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

/* Privacy Content Section */
.privacy-content {
    padding: 80px 24px;
    background: var(--surface-color);
    min-height: 60vh;
}

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

.privacy-section {
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease;
    animation-fill-mode: both;
}

.privacy-section:nth-child(1) { animation-delay: 0.1s; }
.privacy-section:nth-child(2) { animation-delay: 0.15s; }
.privacy-section:nth-child(3) { animation-delay: 0.2s; }
.privacy-section:nth-child(4) { animation-delay: 0.25s; }
.privacy-section:nth-child(5) { animation-delay: 0.3s; }
.privacy-section:nth-child(6) { animation-delay: 0.35s; }
.privacy-section:nth-child(7) { animation-delay: 0.4s; }
.privacy-section:nth-child(8) { animation-delay: 0.45s; }
.privacy-section:nth-child(9) { animation-delay: 0.5s; }
.privacy-section:nth-child(10) { animation-delay: 0.55s; }
.privacy-section:nth-child(11) { animation-delay: 0.6s; }
.privacy-section:nth-child(12) { animation-delay: 0.65s; }

.privacy-section h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: var(--text-primary-dark);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.privacy-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.privacy-section p {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

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

.privacy-section ul li {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
}

.privacy-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.privacy-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.privacy-section a:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-color);
}

.privacy-section strong {
    color: var(--text-primary-dark);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-hero {
        min-height: 40vh;
        padding: 120px 24px 60px;
    }

    .privacy-content {
        padding: 60px 24px;
    }

    .privacy-section {
        margin-bottom: 40px;
    }

    .privacy-section h2::after {
        width: 40px;
    }

    .privacy-section ul li {
        padding-left: 28px;
    }
}

@media (max-width: 480px) {
    .privacy-hero {
        padding: 100px 16px 40px;
    }

    .privacy-content {
        padding: 40px 16px;
    }

    .privacy-section {
        margin-bottom: 32px;
    }
}
