.page-privacy-policy {
    color: #333333; /* Dark text for light body background */
    line-height: 1.6;
    font-family: Arial, sans-serif;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-privacy-policy__hero-section {
    background-color: #003366; /* Main brand color */
    color: #ffffff; /* White text for dark background */
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.page-privacy-policy__hero-content {
    max-width: 800px;
    z-index: 1;
}

.page-privacy-policy__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Accent color for title */
    font-weight: bold;
}

.page-privacy-policy__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-privacy-policy__hero-button,
.page-privacy-policy__contact-button,
.page-privacy-policy__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Accent color for buttons */
    color: #003366; /* Dark text for accent background */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__hero-button:hover,
.page-privacy-policy__contact-button:hover,
.page-privacy-policy__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-privacy-policy__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-privacy-policy__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Subtle background image */
    filter: grayscale(50%); /* Make it less distracting */
}

.page-privacy-policy__content-area {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.page-privacy-policy__section {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin-bottom: 40px;
    border-left: 5px solid #003366; /* Brand accent */
}

.page-privacy-policy__section-title {
    font-size: 2em;
    color: #003366; /* Main brand color */
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700; /* Accent underline */
    padding-bottom: 10px;
}

.page-privacy-policy__section-text {
    font-size: 1.05em;
    color: #555555;
    margin-bottom: 25px;
}

.page-privacy-policy__section img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Minimum display width */
    min-height: 200px; /* Minimum display height */
}

.page-privacy-policy__cta-section {
    background-color: #003366; /* Main brand color */
    color: #ffffff;
    text-align: center;
    padding: 60px 20px;
    border-radius: 12px;
    margin-top: 40px;
}

.page-privacy-policy__cta-title {
    font-size: 2.5em;
    color: #FFD700; /* Accent color */
    margin-bottom: 20px;
}

.page-privacy-policy__cta-text {
    font-size: 1.15em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-privacy-policy__hero-section {
        padding: 60px 15px;
        gap: 20px;
    }

    .page-privacy-policy__hero-title {
        font-size: 2em;
    }

    .page-privacy-policy__hero-description {
        font-size: 1em;
    }

    .page-privacy-policy__hero-button,
    .page-privacy-policy__contact-button,
    .page-privacy-policy__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-privacy-policy__content-area {
        padding: 40px 15px;
    }

    .page-privacy-policy__section {
        padding: 30px;
        margin-bottom: 30px;
    }

    .page-privacy-policy__section-title {
        font-size: 1.8em;
    }

    .page-privacy-policy__section-text {
        font-size: 1em;
    }

    .page-privacy-policy__cta-title {
        font-size: 2em;
    }

    .page-privacy-policy__cta-text {
        font-size: 1.05em;
    }
    
    .page-privacy-policy__hero-image img,
    .page-privacy-policy__section img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__hero-title {
        font-size: 1.8em;
    }

    .page-privacy-policy__section-title {
        font-size: 1.5em;
    }

    .page-privacy-policy__cta-title {
        font-size: 1.8em;
    }

    .page-privacy-policy__hero-button,
    .page-privacy-policy__contact-button,
    .page-privacy-policy__cta-button {
        width: 100%;
        max-width: 250px;
    }

    .page-privacy-policy__section {
        padding: 20px;
    }
}

/* Mobile content area image overflow prevention */
@media (max-width: 768px) {
    .page-privacy-policy__content-area img {
        max-width: 100% !important;
        height: auto !important;
    }
    .page-privacy-policy {
        overflow-x: hidden;
    }
}