/* ========== PRIVACY HERO SECTION ========== */
.privacy-hero-section {
    position: relative;
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.92) 0%, rgba(18, 18, 18, 0.88) 100%),
        url('https://www.transparenttextures.com/patterns/carbon-fibre-v2.png');
    background-size: auto, 300px 300px;
    min-height: 35vh;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    border-bottom: 3px solid rgba(0, 176, 176, 0.4);
    overflow: hidden;
}

.privacy-hero-section .hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 800px 400px at 50% 50%, 
        rgba(0, 176, 176, 0.15) 0%, 
        transparent 50%
    );
    z-index: 1;
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

.privacy-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    right: -50%;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(0, 212, 212, 0.08) 100px,
            rgba(0, 212, 212, 0.08) 101px
        );
    z-index: 1;
    pointer-events: none;
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(100px) translateY(100px); }
}

.privacy-hero-section .hero-viewport {
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 50px;
}

.privacy-hero-section .hero-content {
    max-width: 900px;
    text-align: center;
}

.privacy-hero-section .hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 212, 212, 0.3);
}

.privacy-hero-section .hero-subtitle {
    font-size: 1rem;
    color: #b0b0b0;
    margin: 0;
}

/* ========== PRIVACY SECTION ========== */
.privacy-section {
    background: #f5f7fa;
    padding: 80px 0 100px;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.privacy-intro {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 2px solid #e9ecef;
}

.privacy-intro p {
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 20px;
}

.privacy-intro p:last-child {
    margin-bottom: 0;
}

.privacy-section-block {
    margin-bottom: 48px;
}

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

.section-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.privacy-section-block p {
    font-size: 1rem;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 16px;
}

.privacy-section-block p:last-child {
    margin-bottom: 0;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.privacy-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-size: 1rem;
    color: #495057;
    line-height: 1.8;
}

.privacy-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00b0b0;
    font-weight: 700;
    font-size: 1.2rem;
}

.privacy-list li:last-child {
    margin-bottom: 0;
}

.privacy-section-block a {
    color: #00b0b0;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-section-block a:hover {
    color: #00d4d4;
}

.privacy-section-block strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .privacy-section {
        padding: 60px 0 80px;
    }
    
    .privacy-content {
        padding: 40px 28px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .privacy-intro p,
    .privacy-section-block p,
    .privacy-list li {
        font-size: 0.95rem;
    }
}
