/* style/cookies-policy.css */

/* Root variables for colors based on provided scheme */
:root {
    --gobet-code-primary: #11A84E; /* Main color */
    --gobet-code-secondary: #22C768; /* Auxiliary color */
    --gobet-code-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
    --gobet-code-card-bg: #11271B; /* Card background */
    --gobet-code-background: #08160F; /* Overall background */
    --gobet-code-text-main: #F2FFF6; /* Main text color (light) */
    --gobet-code-text-secondary: #A7D9B8; /* Secondary text color (lighter green) */
    --gobet-code-border: #2E7A4E; /* Border color */
    --gobet-code-glow: #57E38D; /* Glow color */
    --gobet-code-gold: #F2C14E; /* Gold color */
    --gobet-code-divider: #1E3A2A; /* Divider color */
    --gobet-code-deep-green: #0A4B2C; /* Deep Green */
}

/* Base styles for the page content, ensuring contrast with dark body background */
.page-cookies-policy {
    background-color: var(--gobet-code-background); /* Dark background */
    color: var(--gobet-code-text-main); /* Light text for contrast */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    padding-bottom: 50px; /* Add some padding at the bottom */
}

/* Section styling */
.page-cookies-policy__section {
    padding: 60px 20px;
    border-bottom: 1px solid var(--gobet-code-divider);
}

.page-cookies-policy__section:last-of-type {
    border-bottom: none;
}

/* Container for content width */
.page-cookies-policy__container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Hero Section */
.page-cookies-policy__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    padding: 10px 20px 60px; /* Small top padding, more bottom padding */
    background-color: var(--gobet-code-background);
    overflow: hidden; /* Ensure no overflow */
}

.page-cookies-policy__image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for hero image */
    margin-bottom: 30px; /* Space between image and text */
    text-align: center;
}