/* style/privacy-policy.css */
.page-privacy-policy {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-privacy-policy__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #100224; /* Deep purple-black */
    display: flex;
    flex-direction: column; /* Ensure image is above text */
    padding-top: 10px; /* Small top padding, relying on body for header offset */
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/5; /* Adjust as needed for visual impact */
    min-height: 250px; /* Ensure minimum size */
}

.page-privacy-policy__hero-content {
    padding: 20px 20px 40px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.page-privacy-policy__main-title {
    font-size: clamp(2rem, 5vw, 3rem); /* Using clamp for responsive H1, not fixed large value */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #F2C14E; /* Main color */
    text-shadow: 0 0 8px rgba(255, 211, 107, 0.4); /* Glow effect */
}

.page-privacy-policy__intro-text {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #FFD36B; /* Accent color */
}

.page-privacy-policy__content-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-privacy-policy__container {
    background-color: #111111; /* Card BG */
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #3A2A12; /* Border color */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__section-title {
    font-size: 1.8em;
    color: #F2C14E; /* Main color */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    border-bottom: 2px solid #3A2A12;
    padding-bottom: 10px;
}

.page-privacy-policy__section-title:first-of-type {
    margin-top: 0;
}

.page-privacy-policy__paragraph {
    margin-bottom: 1em;
    color: #FFF6D6; /* Text Main */
}

.page-privacy-policy__paragraph a {
    color: #FFD36B; /* Accent color for links */
    text-decoration: underline;
}

.page-privacy-policy__paragraph a:hover {
    color: #F2C14E; /* Main color on hover */
}

.page-privacy-policy__content-image,
.page-privacy-policy__contact-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.page-privacy-policy__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 150px;
    color: #111111; /* Button text color against gradient */
    border: none;
}

.page-privacy-policy__btn--primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111; /* Dark text for bright button */
}

.page-privacy-policy__btn--primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-privacy-policy__btn--secondary {
    background-color: #3A2A12; /* Border color as background for secondary */
    color: #FFD36B; /* Accent color for text */
    border: 1px solid #FFD36B;
}

.page-privacy-policy__btn--secondary:hover {
    background-color: #F2C14E; /* Main color on hover */
    color: #111111;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 193, 78, 0.3);
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-privacy-policy__hero-content {
        padding: 15px 15px 30px;
    }

    .page-privacy-policy__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

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

    .page-privacy-policy__content-section {
        padding: 20px 15px;
    }

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

    .page-privacy-policy__section-title {
        font-size: 1.5em;
        margin-top: 25px;
    }

    .page-privacy-policy__content-image,
    .page-privacy-policy__contact-image {
        margin: 20px auto;
        max-width: 100%; /* Ensure images don't overflow */
        height: auto;
    }

    .page-privacy-policy__contact-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .page-privacy-policy__btn {
        width: 100%;
        max-width: 280px; /* Limit width on small screens */
    }
}

@media (max-width: 549px) {
    .page-privacy-policy__hero-content {
        padding: 10px 10px 20px;
    }

    .page-privacy-policy__main-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }

    .page-privacy-policy__intro-text {
        font-size: 0.95em;
    }

    .page-privacy-policy__container {
        padding: 15px;
    }

    .page-privacy-policy__section-title {
        font-size: 1.3em;
        margin-top: 20px;
    }

    .page-privacy-policy__paragraph {
        font-size: 0.9em;
    }
}

/* Mobile content area image constraint */
@media (max-width: 768px) {
    .page-privacy-policy img {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure content area images are not too small by CSS */
.page-privacy-policy__content-image,
.page-privacy-policy__contact-image {
    min-width: 200px;
    min-height: 200px;
    /* Explicitly prevent smaller CSS dimensions than 200px */
    width: auto; /* Allow width to be determined by max-width */
    height: auto; /* Allow height to be determined by max-width and aspect ratio */
}