/* style/cookies-policy.css */

/* General page styling */
.page-cookies-policy {
    background-color: #0A0A0A; /* Background color from custom palette */
    color: #FFF6D6; /* Text Main color from custom palette for general text */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px; /* Add some padding at the bottom */
}

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

/* Hero Section */
.page-cookies-policy__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Ensure image is above text */
    align-items: center;
    padding-top: 20px; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
    background-color: #111111; /* Card BG as a subtle background for hero */
    overflow: hidden; /* Ensure no overflow */
}

.page-cookies-policy__hero-image {
    width: 100%;
    max-width: 1200px; /* Constrain image width */
    height: auto;
    display: block;
    margin-top: 20px; /* Space between content and image */
    border-radius: 8px;
    object-fit: cover;
}

.page-cookies-policy__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 1; /* Ensure text is above any potential background elements */
}

.page-cookies-policy__main-title {
    font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive font size */
    color: #F2C14E; /* Main brand color for title */
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-cookies-policy__description {
    font-size: 1.1em;
    color: #FFF6D6; /* Text Main */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Content Sections */
.page-cookies-policy__content-section {
    padding: 40px 0;
}

.page-cookies-policy__dark-section {
    background-color: #111111; /* Card BG for dark sections */
}

.page-cookies-policy__section-title {
    font-size: clamp(1.8em, 3vw, 2.5em);
    color: #FFD36B; /* Auxiliary color for section titles */
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.page-cookies-policy__text-block {
    font-size: 1em;
    margin-bottom: 20px;
    color: #FFF6D6; /* Text Main */
}

.page-cookies-policy__list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
    color: #FFF6D6; /* Text Main */
}

.page-cookies-policy__list-item {
    margin-bottom: 10px;
    color: #FFF6D6; /* Text Main */
}

.page-cookies-policy__list-item strong {
    color: #F2C14E; /* Highlight key terms */
}

.page-cookies-policy__content-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #3A2A12; /* Border color */
}

/* Card Grid */
.page-cookies-policy__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-cookies-policy__card {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border color */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    color: #FFF6D6; /* Text Main */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}