.page-cookies-policy {
    background-color: var(--background-color, #FFFFFF); /* Default to white as per custom color, but general instruction is deep purple-black */
    color: #333333; /* Default text color for light background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.page-cookies-policy__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 0 40px; /* Small top padding, larger bottom padding */
    background-color: #26A9E0; /* Primary color for hero background */
    color: #FFFFFF;
}

.page-cookies-policy__hero-image-container {
    width: 100%;
    max-width: 1200px; /* Max width for the image container */
    margin-bottom: 20px;
}

.page-cookies-policy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.page-cookies-policy__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-cookies-policy__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF; /* White for title on blue background */
    margin-bottom: 20px;
    /* No fixed font-size, use clamp if needed but avoid for now as per instructions */
    /* Example if clamp was needed: font-size: clamp(2.5rem, 5vw, 3.5rem); */
}

.page-cookies-policy__description {
    font-size: 1.1em;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Content Section */
.page-cookies-policy__content-section {
    padding: 40px 20px;
    background-color: var(--background-color, #FFFFFF); /* Custom background color for content */
}

.page-cookies-policy__container {
    max-width: 900px;
    margin: 0 auto;
}

.page-cookies-policy__section-heading {
    font-size: 2em;
    color: #26A9E0; /* Primary color for section headings */
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.page-cookies-policy__sub-heading {
    font-size: 1.5em;
    color: #26A9E0; /* Primary color for sub-headings */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-cookies-policy__paragraph {
    margin-bottom: 15px;
    color: #333333;
}

.page-cookies-policy__image {
    width: 100%;
    height: auto;
    display: block;
    margin: 25px 0;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-cookies-policy__list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #333333;
}

.page-cookies-policy__list-item {
    margin-bottom: 8px;
}

.page-cookies-policy__link {
    color: #26A9E0; /* Primary color for links */
    text-decoration: underline;
}

.page-cookies-policy__link:hover {
    text-decoration: none;
}

.page-cookies-policy__contact-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-cookies-policy__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    min-width: 150px; /* Ensure buttons are not too small */
    text-align: center;
}

.page-cookies-policy__button--primary {
    background-color: #EA7C07; /* Login color for primary action */
    color: #FFFFFF;
}

.page-cookies-policy__button--primary:hover {
    background-color: #d46f06;
}

.page-cookies-policy__button--secondary {
    background-color: #26A9E0; /* Primary color for secondary action */
    color: #FFFFFF;
}

.page-cookies-policy__button--secondary:hover {
    background-color: #208bc4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-cookies-policy__main-title {
        font-size: clamp(2em, 8vw, 2.5em); /* Use clamp for H1 on mobile */
    }

    .page-cookies-policy__section-heading {
        font-size: 1.8em;
    }

    .page-cookies-policy__sub-heading {
        font-size: 1.3em;
    }

    .page-cookies-policy__image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure min size on mobile */
        min-height: 200px; /* Ensure min size on mobile */
    }

    .page-cookies-policy__contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-cookies-policy__button {
        width: 100%;
        max-width: 250px;
    }
}

/* Ensure no content overflow on mobile */
@media (max-width: 768px) {
    .page-cookies-policy {
        overflow-x: hidden;
    }
    .page-cookies-policy__container {
        padding: 0 15px;
    }
}

/* Image CSS size lower bound check for content area */
.page-cookies-policy img {
    min-width: 200px;
    min-height: 200px;
}
/* Ensure no filter is used */
.page-cookies-policy img {
    filter: none;
}