/* style/cookies-policy.css */

/* Base Styles */
.page-cookies-policy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background-color: #FFFFFF; /* Explicitly set for clarity, though shared might define */
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

/* Hero Section */
.page-cookies-policy__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background-color: #017439; /* Primary brand color */
    color: #FFFFFF;
    overflow: hidden; /* For image positioning */
}

.page-cookies-policy__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-bottom: 30px;
}

.page-cookies-policy__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFFFFF;
    line-height: 1.2;
}

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

.page-cookies-policy__hero-button {
    display: inline-block;
    background-color: #C30808; /* Register/Login button color */
    color: #FFFF00; /* Register/Login font color */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    max-width: 100%; /* Ensure responsiveness */
    box-sizing: border-box; /* Ensure padding/border included in width */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow long words to break */
}

.page-cookies-policy__hero-button:hover {
    background-color: #a30606;
    transform: translateY(-3px);
}

.page-cookies-policy__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-cookies-policy__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Overlay effect */
    filter: none; /* Ensure no filter changes color */
}

/* Content Area */
.page-cookies-policy__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.page-cookies-policy__section-title {
    font-size: 2.5em;
    color: #017439; /* Primary brand color for titles */
    margin-bottom: 30px;
    text-align: center;
}

.page-cookies-policy__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

/* Dark Section - for contrast */
.page-cookies-policy__dark-section {
    background-color: #017439;
    color: #FFFFFF;
    padding: 60px 20px;
    text-align: center;
}

.page-cookies-policy__dark-section .page-cookies-policy__section-title,
.page-cookies-policy__dark-section .page-cookies-policy__text-block,
.page-cookies-policy__dark-section .page-cookies-policy__card-title,
.page-cookies-policy__dark-section .page-cookies-policy__card-text {
    color: #FFFFFF; /* Ensure white text on dark background */
}