/* Privacy Page Specific Styles */

/* Hero Section Styles - COMPACT and content-fitted */
.hero-section {
    position: relative;
    padding: 1rem 0; /* Minimal padding - just content size */
    min-height: unset !important;
    height: auto !important;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: block !important; /* Remove grid layout causing issues */
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    z-index: 2;
    margin-bottom: 1rem;
}

.hero-visual {
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

/* Remove ALL inherited heights and min-heights */
.hero-section,
.hero-content,
.hero-text,
.hero-visual,
.hero-background {
    min-height: unset !important;
    height: auto !important;
}

/* Hero badge compact styling */
.hero-badge {
    margin-bottom: 1rem !important;
}

/* Hero title compact styling */
.hero-title {
    margin-bottom: 1rem !important;
    font-size: 2rem !important;
}

/* Hero subtitle compact styling */
.hero-subtitle {
    text-align: center !important;
    margin: 0 auto 1rem auto !important;
    max-width: 700px;
}

.privacy-image-slider {
    position: relative;
    max-width: 500px;
    height: 200px; /* Even smaller for compact design */
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Override any inherited min-heights */
.privacy-image-slider,
.hero-section,
.hero-content,
.hero-text,
.hero-visual {
    min-height: unset !important;
}

/* Privacy intro section spacing */
.privacy-intro {
    margin-bottom: 3rem !important;
}

/* CTA section styling */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.glass-accent-section {
    text-align: center;
}

/* Link styling for privacy page */
.privacy-intro a,
.privacy-section a {
    color: var(--text-accent);
}

.privacy-image-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: opacity 1s ease-in-out;
}

.privacy-sections {
    display: grid;
    gap: 2rem;
}

.privacy-section {
    margin-bottom: 0;
}

.privacy-section h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.privacy-section h2 i {
    color: var(--text-accent);
    font-size: 1.2rem;
}

.privacy-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-list {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-list li {
    margin-bottom: 0.75rem;
}

.contact-info {
    background: var(--glass-accent);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-top: 1rem;
    color: var(--text-secondary);
}

.privacy-intro p {
    margin-bottom: 1rem;
}

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

@media (max-width: 768px) {
    .privacy-image-slider {
        height: 200px;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr !important;
    }
}
