/* TABLE OF CONTENTS
1.  CSS Variables
2.  Global Styles & Typography
3.  Bulma Overrides & Complements
4.  Layout & Helper Classes
5.  Header & Navigation
6.  Hero Section
7.  General Section Styling
8.  Neumorphic System
9.  Component Styles
    - Cards (General, Feature, Expert, Blog, Testimonial)
    - Buttons (Global)
    - Forms (Inputs, Textarea)
    - Progress Bars
    - Timeline
    - Accordion
    - Gallery
    - External Resources
10. Specific Page Styles (Success, Privacy, Terms)
11. Footer
12. Animations (Scroll, Hover, Drawn)
13. Responsive Adjustments (Media Queries)
*/

/* 1. CSS Variables */
:root {
    --primary-color: #0D47A1; /* Deep Blue */
    --primary-color-darker: #0B3C85;
    --secondary-color: #1976D2; /* Medium Blue */
    --accent-color: #FFC107; /* Amber/Gold */
    --accent-color-darker: #FFA000;

    --bg-color-light: #E0E5EC; /* Light grayish blue - Neumorphism base */
    --bg-color-medium: #c8d0e7;
    --bg-color-dark: #212121; /* Dark Grey for text or dark elements */

    --text-color-dark: #222222; /* Very dark grey for high contrast on light bg */
    --text-color-medium: #455A64; /* Softer dark grey */
    --text-color-light: #FFFFFF;

    --neumorphic-shadow-light: rgba(255, 255, 255, 0.7);
    --neumorphic-shadow-dark: rgba(163, 177, 198, 0.6);
    --neumorphic-shadow-darker-strong: rgba(94, 104, 121, 0.5);


    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, #FF8F00 100%);
    --gradient-section-light: linear-gradient(135deg, var(--bg-color-light) 0%, #f8f9fa 100%);
    --gradient-footer: linear-gradient(135deg, #263238 0%, #37474F 100%); /* Dark gradient for footer */

    --font-family-headings: 'Raleway', sans-serif;
    --font-family-body: 'Open Sans', sans-serif;

    --neumorphic-convex-shadow: 5px 5px 10px var(--neumorphic-shadow-dark), -5px -5px 10px var(--neumorphic-shadow-light);
    --neumorphic-concave-shadow: inset 5px 5px 10px var(--neumorphic-shadow-dark), inset -5px -5px 10px var(--neumorphic-shadow-light);
    --neumorphic-pressed-shadow: inset 3px 3px 7px var(--neumorphic-shadow-dark), inset -3px -3px 7px var(--neumorphic-shadow-light);

    --border-radius-soft: 15px;
    --border-radius-medium: 10px;
    --border-radius-sharp: 5px;

    --navbar-height: 5rem; /* Approximate, Bulma's default is 3.25rem, might need adjustment */
    --padding-top-fixed-header: 6.25rem; /* navbar height + some buffer */
}

/* Subtle texture for hyperrealism touch */
.subtle-noise-texture::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%239C92AC' fill-opacity='0.10' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}


/* 2. Global Styles & Typography */
body {
    font-family: var(--font-family-body);
    color: var(--text-color-dark);
    background-color: var(--bg-color-light); /* Base for neumorphism */
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden; /* Prevent horizontal scroll */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.title, .subtitle {
    font-family: var(--font-family-headings);
    color: var(--text-color-dark); /* Darker for better contrast */
    font-weight: 700;
}
.title { text-shadow: 1px 1px 2px rgba(0,0,0,0.1); }
.subtitle { color: var(--text-color-medium); }

.section-title {
    margin-bottom: 1.5rem !important;
    color: var(--primary-color) !important; /* Make section titles stand out */
    font-weight: 800 !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}
.section-subtitle {
    margin-bottom: 3rem !important;
    color: var(--text-color-medium) !important;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

a {
    color: var(--secondary-color);
    transition: color 0.3s ease;
}
a:hover {
    color: var(--primary-color);
}

p {
    margin-bottom: 1rem;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 3. Bulma Overrides & Complements */
.section {
    padding: 4rem 1.5rem; /* Increased padding for sections */
}

.container {
    max-width: 1140px; /* Standard container width */
    margin: 0 auto;
}

/* Ensure fixed header doesn't overlap main content */
body.has-navbar-fixed-top {
    padding-top: var(--navbar-height); /* Match Bulma's fixed navbar height */
}

.columns.is-centered .column {
    display: flex; /* For card stretching if needed */
    flex-direction: column;
}

/* 4. Layout & Helper Classes */
.page-padded-top { /* For privacy, terms pages */
    padding-top: var(--padding-top-fixed-header) !important;
}

.content-centered {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.section-gradient {
    background: var(--gradient-section-light);
    position: relative; /* For pseudo-elements like texture */
}
.section-gradient.subtle-noise-texture::before {
    opacity: 0.1; /* Softer noise on light gradients */
}

.section-gradient-alternate {
    background-color: #f0f3f8; /* Slightly different light shade */
}

/* 5. Header & Navigation */
.header.is-fixed-top .navbar {
    background-color: rgba(224, 229, 236, 0.85); /* Light neumorphic base with transparency */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: var(--navbar-height);
}
.navbar-item, .navbar-link {
    font-family: var(--font-family-headings);
    font-weight: 600;
    color: var(--primary-color) !important;
    transition: all 0.3s ease;
}
.navbar-item:hover, .navbar-item.is-active,
.navbar-link:hover, .navbar-link.is-active {
    background-color: transparent !important;
    color: var(--accent-color) !important;
    transform: translateY(-2px);
}
.navbar-burger span {
    background-color: var(--primary-color) !important;
}
.navbar-menu.is-active {
    background-color: rgba(224, 229, 236, 0.98);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
@media screen and (max-width: 1023px) {
    .navbar-menu {
        padding: 0.5rem 0;
    }
    .navbar-item {
        padding: 0.75rem 1rem;
    }
}


/* 6. Hero Section */
.hero-main-banner {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative; /* For overlay and drawn animation */
}
.hero-title {
    font-size: 3.5rem; /* Responsive font size in Bulma */
    font-weight: 800;
    color: var(--text-color-light) !important; /* STROGO */
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}
.hero-subtitle {
    font-size: 1.5rem; /* Responsive font size */
    color: var(--text-color-light) !important; /* STROGO */
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

/* 7. General Section Styling - covered by .section and .section-title/.subtitle */

/* 8. Neumorphic System */
.is-neumorphic {
    background: var(--bg-color-light);
    border-radius: var(--border-radius-soft);
    box-shadow: var(--neumorphic-convex-shadow);
    transition: box-shadow 0.3s ease-in-out, transform 0.2s ease;
}
.is-neumorphic:hover {
    transform: translateY(-3px);
    box-shadow: 8px 8px 15px var(--neumorphic-shadow-dark), -8px -8px 15px var(--neumorphic-shadow-light);
}
.is-neumorphic:active, .is-neumorphic.is-pressed {
    box-shadow: var(--neumorphic-pressed-shadow);
    transform: translateY(1px);
}

.is-neumorphic-inset {
    background: var(--bg-color-light);
    border-radius: var(--border-radius-soft);
    box-shadow: var(--neumorphic-concave-shadow);
}

.is-neumorphic-button { /* For smaller elements or where default button style is too much */
    display: inline-block;
    padding: 0.75em 1.5em;
    background: var(--bg-color-light);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--neumorphic-convex-shadow);
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}
.is-neumorphic-button:hover {
    color: var(--accent-color);
    box-shadow: 6px 6px 12px var(--neumorphic-shadow-dark), -6px -6px 12px var(--neumorphic-shadow-light);
    transform: translateY(-2px);
}
.is-neumorphic-button:active {
    box-shadow: var(--neumorphic-pressed-shadow);
    transform: translateY(1px);
}

/* 9. Component Styles */

/* --- Buttons (Global) --- */
.button.is-neumorphic,
input[type="submit"].is-neumorphic {
    font-family: var(--font-family-headings);
    font-weight: 700;
    border: none;
    transition: all 0.3s ease-out;
    text-shadow: 1px 1px 1px rgba(255,255,255,0.3);
}
.button.is-neumorphic.is-primary {
    background-color: var(--primary-color); /* Use solid color for primary actions */
    box-shadow: 3px 3px 8px #082d6b, -3px -3px 8px #1261d7,
                inset 1px 1px 2px rgba(255,255,255,0.3),
                inset -1px -1px 2px rgba(0,0,0,0.2);
    color: var(--text-color-light);
}
.button.is-neumorphic.is-primary:hover {
    background-color: var(--primary-color-darker);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 5px 5px 12px #082d6b, -5px -5px 12px #1261d7;
}
.button.is-neumorphic.is-primary:active {
    background-color: var(--primary-color);
    transform: translateY(0px) scale(0.98);
    box-shadow: inset 3px 3px 8px #072556, inset -3px -3px 8px #1573ff;
}
/* General .button to ensure consistency if .is-neumorphic is missed */
.button {
    border-radius: var(--border-radius-medium);
    font-weight: 600;
}
.button.is-primary { background-color: var(--primary-color); }
.button.is-primary:hover { background-color: var(--primary-color-darker); }
.button.is-link.is-outlined.is-small.is-neumorphic-button { /* For Read More */
    border-color: var(--accent-color);
    color: var(--accent-color);
    font-weight: 700;
    padding: 0.5em 1em;
}
.button.is-link.is-outlined.is-small.is-neumorphic-button:hover {
    background-color: var(--accent-color);
    color: var(--text-color-light);
    border-color: var(--accent-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* --- Cards --- */
.card.is-neumorphic {
    overflow: hidden; /* Ensure shadows don't get cut by children */
    height: 100%; /* Make cards in a row same height */
    display: flex;
    flex-direction: column;
    /* align-items: center; STROGO - this centers card-image and card-content blocks, content inside them should be aligned */
}
.card.is-neumorphic .card-content {
    flex-grow: 1; /* Allows content to expand and push footer (if any) down */
    padding: 1.5rem;
    text-align: left; /* Default text align */
}
.card.is-neumorphic .title,
.card.is-neumorphic .subtitle {
    color: var(--primary-color) !important;
}
.card.is-neumorphic .title.is-4 {
    margin-bottom: 0.75rem;
}
.card.is-neumorphic .subtitle.is-6 {
    color: var(--text-color-medium) !important;
    margin-bottom: 1rem;
}

/* Card Image specific styles */
.card .card-image.image-container, /* For new structure */
.card .card-image { /* For Bulma's default */
    background-color: var(--bg-color-medium); /* Placeholder while image loads */
    position: relative;
    /* STROGO: parent card's align-items: center will center this block IF it's not full width */
    /* width: 100%; ensure it spans, then image inside can be handled */
}
.card .card-image figure.image { /* Bulma's figure */
    margin: 0; /* Remove default margins if any */
    /* Fixed height for image container (figure) */
    height: 200px; /* Example fixed height for card images */
    overflow: hidden; /* To make object-fit work like crop */
}
.card .card-image figure.image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* STROGO */
    transition: transform 0.4s ease;
}
.card:hover .card-image figure.image img {
    transform: scale(1.05);
}

/* Specific card type centering */
.expert-card .card-content,
.testimonial-card .media-content, /* Bulma's media object needs specific targeting */
.testimonial-card .content {
    text-align: center;
}
.testimonial-card .media {
    justify-content: center; /* Center media object itself */
    text-align: left; /* Keep text inside media left aligned unless specified */
}
.testimonial-card .media-left { margin-right: 1rem; }
.expert-card .card-image figure.image {
    height: 250px; /* Taller for profile pics */
    border-radius: 50%; /* For profile pics, if images are square */
    width: 250px; /* Ensure it's a circle if image is square */
    margin: 1.5rem auto 1rem auto; /* Center the circular image */
}
.expert-card .card-image figure.image img {
    border-radius: 50%; /* Ensure image is circular */
}

.blog-post-card .card-image figure.image {
    height: 225px; /* As per HTML */
}

/* --- Forms --- */
.input.is-neumorphic-input,
.textarea.is-neumorphic-input {
    background-color: var(--bg-color-light) !important;
    border: 1px solid transparent !important; /* Override Bulma border */
    box-shadow: var(--neumorphic-concave-shadow) !important;
    color: var(--text-color-dark) !important;
    border-radius: var(--border-radius-medium) !important;
    padding: 0.75em 1em;
    transition: box-shadow 0.3s ease;
}
.input.is-neumorphic-input:focus,
.textarea.is-neumorphic-input:focus {
    outline: none !important;
    box-shadow: var(--neumorphic-pressed-shadow), 0 0 0 2px var(--accent-color) !important; /* Focus ring */
}
.label {
    color: var(--primary-color) !important;
    font-weight: 600;
}
.contact-form-card {
    padding: 2rem;
}

/* --- Progress Bars --- */
progress.progress {
    border-radius: var(--border-radius-sharp);
    height: 0.75rem !important;
    background-color: var(--bg-color-medium);
    box-shadow: var(--neumorphic-concave-shadow);
}
progress.progress::-webkit-progress-bar {
    background-color: transparent;
    border-radius: var(--border-radius-sharp);
}
progress.progress::-webkit-progress-value {
    background-color: var(--secondary-color); /* Default progress color */
    border-radius: var(--border-radius-sharp);
    transition: width 0.5s ease;
}
progress.progress.is-primary::-webkit-progress-value { background-color: var(--primary-color); }
progress.progress.is-success::-webkit-progress-value { background-color: #48C774; } /* Bulma success */
progress.progress.is-warning::-webkit-progress-value { background-color: var(--accent-color); }

/* --- Timeline --- */
.timeline {
    margin-top: 2rem;
}
.timeline .timeline-item {
    padding-bottom: 2rem;
}
.timeline .timeline-marker.is-neumorphic-marker {
    background-color: var(--bg-color-light);
    border: 3px solid var(--bg-color-light); /* Make it part of neumorphic surface */
    box-shadow: var(--neumorphic-convex-shadow);
    width: 24px;
    height: 24px;
}
.timeline .timeline-marker.is-neumorphic-marker.is-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em; /* Adjust icon size */
    color: var(--primary-color);
}
.timeline .timeline-content.is-neumorphic-content {
    background: var(--bg-color-light);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--neumorphic-convex-shadow);
    padding: 1.5rem;
    margin-left: 1.5rem; /* Space from timeline line */
}
.timeline .timeline-content .heading {
    color: var(--primary-color);
    font-size: 0.9em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

/* --- Accordion --- */
.accordion-container { margin-top: 1.5rem; }
.accordion-item.is-neumorphic {
    margin-bottom: 1rem;
    background-color: var(--bg-color-light);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--neumorphic-convex-shadow);
    overflow: hidden; /* Important for content hide/show */
}
.accordion-header {
    background: transparent; /* Inherit from item */
    border: none;
    width: 100%;
    text-align: left;
    padding: 1rem 1.5rem;
    font-family: var(--font-family-headings);
    font-size: 1.1em;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}
.accordion-header:hover {
    /* Subtle hover, parent .is-neumorphic handles main hover */
}
.accordion-icon {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}
.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #f7f9fc; /* Slightly different background for content area */
    padding: 0 1.5rem;
}
.accordion-item.active .accordion-content {
    padding: 1.5rem; /* Add padding when active */
}
.accordion-content p {
    margin-bottom: 0; /* Adjust if needed */
    color: var(--text-color-medium);
}

/* --- Gallery --- */
.is-neumorphic-image-container {
    border-radius: var(--border-radius-soft);
    box-shadow: var(--neumorphic-convex-shadow);
    overflow: hidden; /* To ensure image respects border-radius */
    padding: 8px; /* Creates a "frame" effect */
    background: var(--bg-color-light);
}
.is-neumorphic-image-container img {
    border-radius: calc(var(--border-radius-soft) - 8px); /* Inner radius */
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#gallery .column {
    display: flex; /* To make figure stretch */
}
#gallery figure.image {
    width: 100%;
}

/* --- External Resources --- */
.resource-list .box.is-neumorphic-box {
    background: var(--bg-color-light);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--neumorphic-convex-shadow);
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.resource-list .box.is-neumorphic-box:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 8px 8px 15px var(--neumorphic-shadow-dark), -8px -8px 15px var(--neumorphic-shadow-light);
}
.resource-list .title.is-5 a {
    color: var(--primary-color);
    font-weight: 700;
}
.resource-list .title.is-5 a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}
.resource-description {
    color: var(--text-color-medium);
    font-size: 0.95em;
}

/* 10. Specific Page Styles */
/* --- success.html --- */
.success-page-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 2rem;
    background: var(--gradient-section-light);
}
.success-page-container .success-icon {
    font-size: 5rem;
    color: var(--accent-color); /* Bulma's success color or accent */
    margin-bottom: 1.5rem;
    /* Animation for icon (e.g., pop) */
    animation: popIn 0.5s ease-out forwards;
}
.success-page-container .title {
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.success-page-container .subtitle {
    color: var(--text-color-medium);
    margin-bottom: 2rem;
}

/* --- privacy.html, terms.html --- */
.static-page-content {
    padding-top: var(--padding-top-fixed-header); /* To avoid overlap with fixed header */
    padding-bottom: 4rem;
}
.static-page-content .container {
    background-color: var(--text-color-light);
    padding: 2rem;
    border-radius: var(--border-radius-medium);
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}
.static-page-content h1.title,
.static-page-content h2.title {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}
.static-page-content h3.title {
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.static-page-content p, .static-page-content li {
    color: var(--text-color-medium);
    line-height: 1.7;
}
.static-page-content ul {
    list-style: disc;
    padding-left: 25px;
}


/* 11. Footer */
.footer.footer-gradient {
    background: var(--gradient-footer);
    color: #bdc3c7; /* Light grey text for dark footer */
    padding: 3rem 1.5rem 2rem; /* Reduced bottom padding */
    position: relative; /* For pseudo-elements */
}
.footer.footer-gradient.subtle-noise-texture::before {
    opacity: 0.05;
}
.footer .footer-title {
    color: var(--text-color-light) !important;
    font-weight: 700;
    margin-bottom: 1rem;
}
.footer .footer-link {
    color: #ecf0f1 !important; /* Brighter link color */
    transition: color 0.2s ease, text-shadow 0.2s ease;
}
.footer .footer-link:hover {
    color: var(--accent-color) !important;
    text-shadow: 0 0 5px var(--accent-color);
}
.footer .footer-hr {
    background-color: rgba(255,255,255,0.1);
    height: 1px;
    margin: 1.5rem 0;
}
.footer .footer-copy {
    font-size: 0.9em;
    margin-top: 1rem;
    color: #95a5a6; /* Muted copy text */
}

/* Footer social links (text-based) */
.footer .column:nth-child(3) p { /* Assuming 3rd column is "Síguenos" */
    margin-bottom: 0.5rem;
}


/* 12. Animations */
/* --- Scroll Animations --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Drawn Animation (Hero SVG example) --- */
.animate-path {
    stroke-dasharray: 1000; /* A large enough value for the path length */
    stroke-dashoffset: 1000;
    animation: drawPath 2s ease-out 0.5s forwards;
}
@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes popIn {
    0% { transform: scale(0.5); opacity: 0; }
    70% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

/* Hover effects for cards, buttons are already included in their respective styles */

/* 13. Responsive Adjustments (Media Queries) */
@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .section {
        padding: 3rem 1rem;
    }
    .section-title {
        font-size: 1.8rem; /* Bulma's .title.is-3 */
    }
    .section-subtitle {
        font-size: 1rem; /* Bulma's .subtitle.is-5 */
        margin-bottom: 2rem;
    }
    .columns.is-multiline .column {
        margin-bottom: 1.5rem; /* Space between cards on mobile */
    }
    .card .card-image figure.image {
        height: 180px; /* Adjust card image height for mobile */
    }
    .expert-card .card-image figure.image {
        height: 180px;
        width: 180px;
    }
    .contact-form-card {
        padding: 1.5rem;
    }
    .timeline::before { /* Adjust timeline line position on mobile if needed */
        left: 11px;
    }
    .timeline .timeline-content {
        margin-left: 1rem; /* Adjust space for smaller markers */
        padding: 1rem;
    }
    .footer .columns {
        text-align: center;
    }
    .footer .column {
        margin-bottom: 1.5rem;
    }
}

/* Cookie Consent Popup - Minimal styles as requested in HTML */
/* Styles for #cookie-consent-popup are directly in the HTML as per prompt */