/* style/cookies-policy.css */

/* Base styles for the cookie policy page */
.page-cookies-policy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: #FFFFFF; /* Explicitly set for clarity, though shared.css defines body bg */
}

/* Hero Section */
.page-cookies-policy__hero-section {
    padding-top: 10px; /* Small top padding, relies on body padding-top for header offset */
    padding-bottom: 40px;
    background-color: #26A9E0; /* Primary brand color for hero background */
    color: #ffffff; /* White text for dark background */
    text-align: center;
    position: relative;
    overflow: hidden; /* Ensure content doesn't spill */
}

.page-cookies-policy__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-cookies-policy__hero-content {
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1; /* Ensure content is above any potential background layers */
}

.page-cookies-policy__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px; /* Space between image and text */
}

.page-cookies-policy__main-title {
    font-size: clamp(2em, 3.5vw, 3.2em); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 15px;
    color: #ffffff;
    max-width: 800px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.page-cookies-policy__description {
    font-size: clamp(1em, 1.2vw, 1.15em); /* Responsive font size */
    margin-bottom: 30px;
    max-width: 800px;
    color: #f0f8ff;
    line-height: 1.5;
}

/* Content Section */
.page-cookies-policy__content-section {
    padding: 60px 0;
    background-color: #FFFFFF; /* Light background for content */
    color: #333333;
}

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

.page-cookies-policy__section-title {
    font-size: 2.2em;
    color: #26A9E0; /* Primary brand color for main titles */
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

.page-cookies-policy__subsection {
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 4px solid #26A9E0;
}

.page-cookies-policy__subsection-title {
    font-size: 1.6em;
    color: #000000; /* Darker text for sub-titles */
    margin-top: 25px;
    margin-bottom: 15px;
}

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

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

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

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

/* Call to Action Section */
.page-cookies-policy__cta-section {
    text-align: center;
    margin-top: 50px;
    padding: 40px 20px;
    background-color: #f0f8ff; /* Light background for CTA */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-cookies-policy__cta-text {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-cookies-policy__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-cookies-policy__btn-primary,
.page-cookies-policy__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    max-width: 100%; /* Ensure buttons adapt */
    box-sizing: border-box;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
}

.page-cookies-policy__btn-primary {
    background-color: #EA7C07; /* Login color for primary CTA */
    color: #ffffff;
    border: 2px solid #EA7C07;
}

.page-cookies-policy__btn-primary:hover {
    background-color: #d16b05;
    border-color: #d16b05;
    transform: translateY(-2px);
}

.page-cookies-policy__btn-secondary {
    background-color: #26A9E0; /* Primary brand color for secondary CTA */
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-cookies-policy__btn-secondary:hover {
    background-color: #1f8ec4;
    border-color: #1f8ec4;
    transform: translateY(-2px);
}