/* style/cookies-policy.css */

/* Base styles for the entire page content */
.page-cookies-policy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text for dark body background */
    background-color: transparent; /* Body background is handled by shared.css or global style */
}

/* Hero Section */
.page-cookies-policy__hero-section {
    position: relative;
    padding: 80px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    text-align: center;
    background: linear-gradient(135deg, #26A9E0, #1a7bbd); /* Brand color gradient */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    box-sizing: border-box;
}

.page-cookies-policy__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.page-cookies-policy__hero-title {
    font-size: 3.5em;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-cookies-policy__hero-description {
    font-size: 1.2em;
    color: #f0f0f0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-cookies-policy__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
    display: block; /* Ensure image is block for max-width to work */
}

/* Content Sections */
.page-cookies-policy__content-section {
    padding: 60px 20px;
    background-color: #0a0a0a; /* Dark background for content sections, inherited from body */
    color: #ffffff; /* Light text for dark background */
    box-sizing: border-box;
}

.page-cookies-policy__section-title {
    font-size: 2.5em;
    color: #26A9E0; /* Brand color for titles */
    margin-top: 40px;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-cookies-policy__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #f0f0f0;
}

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

.page-cookies-policy__list-item {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-cookies-policy__list-item strong {
    color: #26A9E0; /* Highlight important points with brand color */
}

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