/* style/cookies-policy.css */

/* Base Styles for the Cookie Policy Page */
.page-cookies-policy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark background */
    background-color: transparent; /* Inherit from body (var(--dark-bg)) */
}

/* Section Styling */
.page-cookies-policy__section {
    padding: 60px 20px;
    margin-bottom: 0; /* Remove default margin */
}

.page-cookies-policy__section:nth-child(even) {
    background-color: #000080; /* Navy blue background for alternating sections */
    color: #ffffff;
}

.page-cookies-policy__section:nth-child(odd) {
    background-color: #0d0d0d; /* Darker background for other sections, ensuring contrast */
    color: #f0f0f0;
}

.page-cookies-policy__dark-section {
    background-color: #000080; /* Explicitly dark section */
    color: #ffffff;
}

.page-cookies-policy__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Consistent padding */
}

/* Hero Section */
.page-cookies-policy__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 20px 60px; /* Adjust padding-top to account for fixed header */
    background-color: #000080; /* Consistent dark background */
    color: #ffffff;
    min-height: 500px;
    overflow: hidden; /* Prevent content overflow */
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-cookies-policy__hero-content {
    flex: 1;
    max-width: 50%;
    z-index: 2;
    padding-right: 30px;
}

.page-cookies-policy__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    line-height: 1.2;
}

.page-cookies-policy__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-cookies-policy__hero-image-wrapper {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 1;
}

.page-cookies-policy__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Ensure min size */
    min-height: 200px; /* Ensure min size */
}

/* General Headings */
.page-cookies-policy__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-cookies-policy__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-cookies-policy__subsection-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Text Blocks */
.page-cookies-policy__text-block {
    margin-bottom: 20px;
    font-size: 1.05em;
    color: #f0f0f0;
}

.page-cookies-policy__section:nth-child(odd) .page-cookies-policy__text-block {
    color: #f0f0f0; /* Ensure light text on dark background */
}
.page-cookies-policy__section:nth-child(even) .page-cookies-policy__text-block {
    color: #ffffff; /* Ensure light text on dark background */
}