/* style/cookies-policy.css */

/* Base styles for the cookie policy page */
.page-cookies-policy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text for dark body background */
    background-color: #1a1a2e; /* Inherited from body, explicit for clarity */
}

/* Hero Section */
.page-cookies-policy__hero-section {
    position: relative;
    padding: 60px 20px;
    background-color: #26A9E0; /* Brand color for hero background */
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.page-cookies-policy__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px; /* Internal padding for content within hero */
    padding-bottom: 40px;
}

.page-cookies-policy__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #ffffff; /* White title on brand blue background */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-cookies-policy__description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
}

.page-cookies-policy__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Main Content Area */
.page-cookies-policy__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #1a1a2e; /* Ensure content area also has dark background */
    color: #ffffff; /* Light text */
}

.page-cookies-policy__container {
    padding: 0; /* No extra padding here if body already has offset */
}

.page-cookies-policy__section-title {
    font-size: 2em;
    color: #26A9E0; /* Brand color for main headings */
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(38, 169, 224, 0.5);
    padding-bottom: 10px;
}

.page-cookies-policy__subsection-title {
    font-size: 1.5em;
    color: #26A9E0; /* Brand color for subheadings */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-cookies-policy__paragraph {
    margin-bottom: 15px;
    color: #f0f0f0; /* Slightly off-white for paragraphs */
}

.page-cookies-policy__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin: 20px 0;
    display: block;
}

.page-cookies-policy__text-link {
    color: #26A9E0; /* Brand color for links */
    text-decoration: underline;
}

.page-cookies-policy__text-link:hover {
    color: #5bc0de; /* Lighter shade on hover */
    text-decoration: none;
}

/* Call to Action Section */
.page-cookies-policy__cta-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px 20px;
    background-color: rgba(38, 169, 224, 0.1); /* Subtle brand color background */
    border-radius: 8px;
    border: 1px solid rgba(38, 169, 224, 0.3);
}

.page-cookies-policy__cta-text {
    font-size: 1.3em;
    margin-bottom: 25px;
    color: #ffffff;
}

.page-cookies-policy__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #26A9E0; /* Primary brand color */
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-cookies-policy__cta-button:hover {
    background-color: #5bc0de; /* Lighter shade on hover */
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-cookies-policy__hero-section {
        padding: 40px 15px;
    }

    .page-cookies-policy__hero-container {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .page-cookies-policy__title {
        font-size: 2em;
        line-height: 1.3;
    }

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

    .page-cookies-policy__content-area {
        padding: 30px 15px;
    }

    .page-cookies-policy__section-title {
        font-size: 1.6em;
        margin-top: 30px;
    }

    .page-cookies-policy__subsection-title {
        font-size: 1.2em;
        margin-top: 20px;
    }

    /* Images responsiveness */
    .page-cookies-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important; /* Ensure padding/border is included in width */
    }

    /* All containers that might hold images or other content */
    .page-cookies-policy__hero-container,
    .page-cookies-policy__container,
    .page-cookies-policy__cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden !important; /* Prevent horizontal scroll */
    }

    /* Button responsiveness */
    .page-cookies-policy__cta-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px !important;
    }

    .page-cookies-policy__cta-section {
        padding: 30px 15px;
    }
}