.page-cookies-policy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background-color: #FFFFFF; /* Default light background */
}

/* Hero Section */
.page-cookies-policy__hero-section {
    background-color: #017439; /* Brand primary color */
    color: #ffffff; /* White text for dark background */
    padding: 80px 20px;
    text-align: center;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

.page-cookies-policy__main-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFFF00; /* Special color for main title */
}

.page-cookies-policy__intro-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 30px;
}

/* CTA Buttons */
.page-cookies-policy__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-cookies-policy__btn-primary,
.page-cookies-policy__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    max-width: 100%; /* Ensure responsiveness */
    box-sizing: border-box; /* Ensure padding is included in width */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Break long words */
}

.page-cookies-policy__btn-primary {
    background-color: #C30808; /* Register color */
    color: #FFFF00; /* Register font color */
    border: 2px solid #C30808;
}

.page-cookies-policy__btn-primary:hover {
    background-color: #a00606;
    border-color: #a00606;
}

.page-cookies-policy__btn-secondary {
    background-color: transparent;
    color: #FFFF00; /* Login font color */
    border: 2px solid #FFFF00;
}

.page-cookies-policy__btn-secondary:hover {
    background-color: #FFFF00;
    color: #C30808;
}

/* Video Section */
.page-cookies-policy__video-section {
    padding: 60px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

.page-cookies-policy__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 1280px;
    margin: 30px auto;
    background-color: #000; /* Placeholder background */
}

.page-cookies-policy__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    cursor: pointer;
    display: block; /* Ensure no extra space below video */
}