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

:root {
    --primary-color: #D4A574;
    --primary-color-dark: #B8945F;
}

/* Hero Banner */
.privacy-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/assets/images/production/privacy.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
}


.privacy-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.privacy-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 29, 31, 0.6);
    z-index: 1;
    color: #fff !important;
}

.privacy-hero .hero-content {
    position: relative;
    z-index: 2;
    color: #fff !important;
}

.privacy-hero .hero-title {
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 0.5em;
    color: #fff !important;
}

.privacy-hero .hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    max-width: 550px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Main Content Area */
.privacy-main {
    padding: 80px 0;
    background-color: #ffffff;
}

.privacy-main .container {
    max-width: 840px;
}

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

.privacy-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1d1d1f;
    padding-bottom: 10px;
    border-bottom: 1px solid #e8e8e8;
}

.privacy-content p,
.privacy-content li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 1em;
}

.privacy-content .effective-date {
    font-style: italic;
    color: #6c757d;
    margin-bottom: 40px;
    text-align: left;
}

.privacy-content ul {
    list-style: none;
    padding-left: 0;
}

.privacy-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-content a:hover {
    color: var(--primary-color-dark);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-hero {
        padding: 80px 0;
    }
    .privacy-hero .hero-title {
        font-size: 2.5rem;
    }
    .privacy-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    .privacy-main {
        padding: 60px 15px;
    }
    .privacy-content h2 {
        font-size: 1.6rem;
    }
    .privacy-content p,
    .privacy-content li {
        font-size: 1rem;
    }
}
