/* style/cookies-policy.css */

/* Base styles for the cookie policy page */
.page-cookies-policy {
    background-color: #F4F7FB; /* Background color */
    color: #1F2D3D; /* Main text color */
    font-family: Arial, sans-serif; /* Example font */
    line-height: 1.6;
    padding-bottom: 40px; /* General padding for the bottom of the main content */
}

/* Ensure the first section has appropriate top padding, not relying on --header-offset */
.page-cookies-policy__hero-section {
    padding-top: 10px; /* Small top padding for the first section */
    padding-bottom: 40px;
    background-color: #FFFFFF; /* Card BG for the hero section */
    border-bottom: 1px solid #D6E2FF;
}

.page-cookies-policy__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-cookies-policy__main-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem); /* Responsive H1 font size */
    font-weight: 700;
    line-height: 1.2;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 20px;
    text-align: center;
}

.page-cookies-policy__description {
    font-size: 1.1rem;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-cookies-policy__content-section {
    padding: 40px 0;
    background-color: #FFFFFF; /* Card BG */
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-cookies-policy__section-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem); /* Responsive H2 font size */
    font-weight: 600;
    color: #2F6BFF; /* Primary color */
    margin-bottom: 20px;
    text-align: center;
}

.page-cookies-policy__text {
    font-size: 1rem;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 15px;
    text-align: justify;
}

.page-cookies-policy__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* Enforce minimum size for content images as per rules */
    min-width: 200px; 
    min-height: 200px;
    object-fit: cover; /* Ensures images cover their area without distortion */
}

.page-cookies-policy__list {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
    color: #1F2D3D; /* Text Main */
}

.page-cookies-policy__list-item {
    margin-bottom: 10px;
    color: #1F2D3D; /* Text Main */
}

.page-cookies-policy__list-item strong {
    color: #000000; /* Custom Color_1776249996415 */
}

.page-cookies-policy__browser-links {
    list-style: none;
    padding-left: 0;
    text-align: center; /* Center browser links */
}

.page-cookies-policy__browser-links .page-cookies-policy__list-item {
    display: inline-block; /* Make links inline for better spacing */
    margin: 0 10px 10px;
}

.page-cookies-policy__browser-links a {
    color: #2F6BFF; /* Primary color */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.page-cookies-policy__browser-links a:hover {
    color: #6FA3FF; /* Accent color */
    text-decoration: underline;
}

.page-cookies-policy__contact-button {
    display: block;
    width: fit-content;
    margin: 30px auto;
    padding: 12px 25px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3); /* Glow effect */
}

.page-cookies-policy__contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4); /* Enhanced glow */
}

.page-cookies-policy__last-updated {
    font-size: 0.9rem;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-cookies-policy__container {
        padding: 0 15px;
    }

    .page-cookies-policy__main-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }

    .page-cookies-policy__description {
        font-size: 1rem;
    }

    .page-cookies-policy__section-title {
        font-size: clamp(1.3rem, 5vw, 2rem);
    }

    .page-cookies-policy__text {
        font-size: 0.95rem;
    }

    .page-cookies-policy__list {
        padding-left: 20px;
    }

    .page-cookies-policy__browser-links .page-cookies-policy__list-item {
        display: block; /* Stack links on mobile */
        margin: 0 auto 10px auto;
        width: fit-content;
    }

    /* Enforce mobile content image constraints */
    .page-cookies-policy__image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure images are not too small */
        min-height: 200px; /* Enforce minimum 200px height as per rule */
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .page-cookies-policy__main-title {
        font-size: clamp(1.3rem, 7vw, 2.2rem);
    }

    .page-cookies-policy__section-title {
        font-size: clamp(1.2rem, 6vw, 1.8rem);
    }

    .page-cookies-policy__text {
        font-size: 0.9rem;
    }

    .page-cookies-policy__contact-button {
        width: 90%; /* Make button wider on very small screens */
        max-width: 300px;
    }
}