/* Privacy Hero */
.privacy-hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.privacy-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.privacy-hero .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.privacy-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    z-index: 2;
}

.privacy-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

/* Privacy Section */
.privacy-section {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #1a0020, #000);
    position: relative;
}

.privacy-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.privacy-section h2.section-title {
    font-size: 2.5rem;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    color: var(--gold-color);
}

.privacy-section h3.subsection-title {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.privacy-section h4.subsubsection-title {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.privacy-section p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.section-title:after { left: 5% !important; }
/* Responsive Styles */
@media (max-width: 768px) {
    .privacy-hero {
        height: 40vh;
    }

    .privacy-section h2.section-title {
        font-size: 2rem;
    }

    .privacy-section h3.subsection-title {
        font-size: 1.75rem;
    }

    .privacy-section h4.subsubsection-title {
        font-size: 1.25rem;
    }
.section-title:after { left: 15% !important; }
}
