/* style/cookies-policy.css */
/* Custom Colors */
:root {
    --page-cookies-policy-primary-color: #11A84E; /* Main Color */
    --page-cookies-policy-secondary-color: #22C768; /* Auxiliary Color */
    --page-cookies-policy-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    --page-cookies-policy-card-bg: #11271B; /* Card BG */
    --page-cookies-policy-background: #08160F; /* Background */
    --page-cookies-policy-text-main: #F2FFF6; /* Text Main */
    --page-cookies-policy-text-secondary: #A7D9B8; /* Text Secondary */
    --page-cookies-policy-border: #2E7A4E; /* Border */
    --page-cookies-policy-glow: #57E38D; /* Glow */
    --page-cookies-policy-gold: #F2C14E; /* Gold */
    --page-cookies-policy-divider: #1E3A2A; /* Divider */
    --page-cookies-policy-deep-green: #0A4B2C; /* Deep Green */
}

.page-cookies-policy {
    background-color: var(--page-cookies-policy-background);
    color: var(--page-cookies-policy-text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-cookies-policy__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Enforce top-image-bottom-text */
    align-items: center;
    justify-content: center;
    padding: 10px 0 60px; /* Small top padding, more bottom padding */
    text-align: center;
    overflow: hidden;
    background-color: var(--page-cookies-policy-deep-green); /* Fallback background */
}

.page-cookies-policy__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-cookies-policy__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.page-cookies-policy__hero-content {
    max-width: 900px;
    padding: 20px;
    margin-top: 20px; /* Space between image and text */
    z-index: 1;
    color: var(--page-cookies-policy-text-main);
}

.page-cookies-policy__main-title {
    font-size: 2.8em;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--page-cookies-policy-gold); /* Using Gold for title */
    max-width: 100%; /* Ensure it doesn't overflow */
}

.page-cookies-policy__intro-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--page-cookies-policy-text-secondary);
}

.page-cookies-policy__cta-button {
    display: inline-block;
    background: var(--page-cookies-policy-button-gradient);
    color: #ffffff; /* White text for button */
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    box-sizing: border-box; /* Ensure padding is included in width */
    max-width: 100%; /* For mobile responsiveness */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow long words to break */
}

.page-cookies-policy__cta-button:hover {
    filter: brightness(1.1);
}

.page-cookies-policy__cta-button--secondary {
    background: transparent;
    border: 2px solid var(--page-cookies-policy-primary-color);
    color: var(--page-cookies-policy-primary-color);
}