/* Privacy Policy Page - Dark Theme */

/* Privacy Page Hero */
.privacy-page .hero-section,
body:has(.privacy-section) .hero-section {
    background: linear-gradient(135deg, var(--cp-black) 0%, #1a1a1a 100%);
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: -70px;
    padding-top: 70px;
    padding-bottom: 3rem;
}

.privacy-page .hero-section::before,
body:has(.privacy-section) .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.privacy-page .hero-content,
body:has(.privacy-section) .hero-content {
    position: relative;
    z-index: 2;
}

.privacy-page .hero-title,
body:has(.privacy-section) .hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.privacy-page .hero-subtitle,
body:has(.privacy-section) .hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Main Content Layout */
.privacy-section {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.privacy-section:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Typography */
.privacy-section h2 {
    color: var(--cp-red-primary);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.5rem;
}

.privacy-section h3 {
    color: var(--cp-red-secondary);
    font-size: 1.3rem;
    font-weight: 500;
    margin: 1.5rem 0 1rem;
}

.privacy-section h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 1.2rem 0 0.8rem;
}

.privacy-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1.2rem;
    max-width: 720px;
    font-size: 0.95rem;
}

/* Lists */
.privacy-section ul, .privacy-section ol {
    max-width: 720px;
    margin: 1.2rem 0;
    padding-left: 1.5rem;
}

.privacy-section li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.privacy-section ul li::marker {
    content: "🛡️ ";
    font-size: 0.9rem;
}

/* Strong/Bold text */
.privacy-section strong {
    color: var(--white);
    font-weight: 600;
}

/* Privacy-specific styling */
.privacy-intro {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-left: 4px solid var(--cp-red-primary);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
}

.privacy-intro h2 {
    color: var(--cp-red-primary);
    margin-bottom: 1rem;
    border-bottom: none;
}

.privacy-intro p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem;
}

/* Contact section */
.privacy-contact {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-contact h3 {
    color: var(--cp-red-primary);
    margin-bottom: 1rem;
}

.privacy-contact p {
    margin-bottom: 0.8rem;
}

.privacy-contact a {
    color: var(--cp-red-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-contact a:hover {
    color: var(--cp-red-primary);
    text-decoration: underline;
}

/* Links */
.privacy-section a {
    color: var(--cp-red-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-section a:hover {
    color: var(--cp-red-primary);
    text-decoration: underline;
}

/* Page Sections */
.privacy-page .section,
body:has(.privacy-section) .section {
    padding: 4rem 0;
}

.privacy-page .section .container,
body:has(.privacy-section) .section .container {
    max-width: 900px;
    margin: 0 auto;
}

/* Center content for better readability */
.privacy-page .section .row,
body:has(.privacy-section) .section .row {
    justify-content: center;
}

.privacy-page .col-lg-8,
body:has(.privacy-section) .col-lg-8 {
    max-width: 100%;
}

/* CTA Section in Privacy - Enhanced (matches terms.css) */
.privacy-section.text-center {
    background: var(--cp-shade);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    margin: 3rem auto 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
}

.privacy-section.text-center h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 0;
    line-height: 1.3;
}

.privacy-section.text-center p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-page .hero-section,
    body:has(.privacy-section) .hero-section {
        margin-top: -55px;
        padding-top: 55px;
        min-height: 45vh;
    }
    
    .privacy-page .hero-title,
    body:has(.privacy-section) .hero-title {
        font-size: 2.2rem;
    }
    
    .privacy-page .section .container,
    body:has(.privacy-section) .section .container {
        max-width: 95%;
        padding: 0 1rem;
    }
    
    .privacy-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .privacy-section h2 {
        font-size: 1.4rem;
    }
    
    .privacy-section h3 {
        font-size: 1.2rem;
    }
    
    .privacy-section h4 {
        font-size: 1rem;
    }
    
    .privacy-section p,
    .privacy-section li {
        font-size: 0.9rem;
        max-width: 100%;
    }
    
    .privacy-section ul, .privacy-section ol {
        padding-left: 1.2rem;
        max-width: 100%;
    }
    
    .privacy-section.text-center {
        padding: 1.5rem;
        margin: 1.5rem auto;
        max-width: 95%;
    }
}

@media (max-width: 576px) {
    .privacy-page .hero-section,
    body:has(.privacy-section) .hero-section {
        margin-top: -50px;
        padding-top: 50px;
    }
    
    .privacy-page .hero-title,
    body:has(.privacy-section) .hero-title {
        font-size: 1.9rem;
    }
    
    .privacy-section.text-center {
        padding: 2rem 1.5rem;
        max-width: 100%;
        margin: 2rem auto 0;
    }
    
    .privacy-section {
        padding: 1rem 0;
    }
    
    .section .container .row .col-lg-8 {
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .privacy-page .hero-section,
    body:has(.privacy-section) .hero-section {
        margin-top: -50px;
        padding-top: 50px;
        min-height: 40vh;
    }
    
    .privacy-page .hero-title,
    body:has(.privacy-section) .hero-title {
        font-size: 1.8rem;
    }
    
    .privacy-page .section .container,
    body:has(.privacy-section) .section .container {
        max-width: 100%;
        padding: 0 0.75rem;
    }
    
    .privacy-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
    
    .privacy-section h3 {
        font-size: 1.1rem;
    }
    
    .privacy-section p,
    .privacy-section li {
        font-size: 0.85rem;
    }
    
    .privacy-section.text-center {
        padding: 1rem;
        margin: 1rem auto;
    }
}
