/* style.css - Inversiones Financieras en Argentina */

/* -------------------------------------------------------------------
   1. CSS Variables
------------------------------------------------------------------- */
:root {
    --primary-color: #FFDD57; /* Bright Yellow - Brutalist Accent */
    --primary-color-dark: #E6C640; /* Darker yellow for interactions */
    --primary-color-rgb: 255, 221, 87;

    --text-color: #333333; /* Dark Grey for body text */
    --text-color-light: #F5F5F5; /* For dark backgrounds */
    --heading-color: #222222; /* Very Dark Grey / Off-Black */
    
    --background-color: #F8F8F8; /* Light Neutral Background */
    --background-grey-lighter: #EAEAEA; /* For alternating sections */
    --card-background: #FFFFFF;
    
    --border-color: #222222; /* Brutalist Border Color */
    --input-border-color: #BDBDBD;
    --input-focus-border-color: var(--primary-color);

    --white: #FFFFFF;
    --black: #000000;
    --neutral-grey: #757575; /* For subtitles or less important text */

    --font-primary: 'Archivo Black', sans-serif;
    --font-secondary: 'Roboto', sans-serif;

    --brutalist-border-width: 2px;
    --brutalist-border-style: solid;
    --brutalist-border: var(--brutalist-border-width) var(--brutalist-border-style) var(--border-color);
    --brutalist-shadow-strong: 5px 5px 0px var(--border-color);
    --brutalist-shadow-light: 3px 3px 0px rgba(0, 0, 0, 0.15);
    --brutalist-shadow-card: 4px 4px 0px var(--border-color);

    --header-height: 80px; /* Adjust as needed */
    --section-padding-y: 4rem; /* Vertical padding for sections */
    --section-padding-x: 1.5rem; /* Horizontal padding for sections */

    --transition-speed: 0.3s;
    --transition-timing: ease-in-out;
}

/* -------------------------------------------------------------------
   2. Global Resets & Base Styles
------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base font size */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* Prevent horizontal scroll from content */
}

.site-wrapper {
    overflow-x: hidden; /* Ensure no overflow from main wrapper */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--heading-color);
    font-weight: 700; /* Archivo Black is already bold */
    line-height: 1.2;
    margin-bottom: 1rem;
}

.title { /* Bulma override for our font */
    font-family: var(--font-primary);
    color: var(--heading-color) !important; /* Force override if Bulma is too specific */
    text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}
.subtitle {
    font-family: var(--font-secondary);
    color: var(--neutral-grey);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color-dark);
    text-decoration: none;
    transition: color var(--transition-speed) var(--transition-timing);
}

a:hover, a:focus {
    color: var(--primary-color);
    text-decoration: underline;
}

.custom-link {
    color: var(--primary-color-dark);
    font-weight: bold;
}
.custom-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

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

/* -------------------------------------------------------------------
   3. Utility Classes
------------------------------------------------------------------- */
.has-parallax-background {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.text-block {
    color: var(--text-color);
    font-size: 1.05rem; /* Slightly larger for readability */
}
.text-block p {
    margin-bottom: 1.25rem;
}

.section-block {
    padding-top: var(--section-padding-y);
    padding-bottom: var(--section-padding-y);
    padding-left: var(--section-padding-x);
    padding-right: var(--section-padding-x);
}
.section-block.has-background-grey-lighter {
    background-color: var(--background-grey-lighter) !important;
}

.section-title {
    margin-bottom: 2.5rem !important; /* More space after title */
    text-align: center;
    color: var(--heading-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* -------------------------------------------------------------------
   4. Header / Navigation
------------------------------------------------------------------- */
.header-main {
    background-color: var(--white);
    border-bottom: var(--brutalist-border);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}
.sticky-header {
    position: sticky;
    top: 0;
    width: 100%;
}

.navbar {
    min-height: var(--header-height);
    background-color: transparent; /* Inherits from .header-main */
}

.navbar-brand .logo-text {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--heading-color) !important;
    font-weight: bold;
    letter-spacing: -1px;
}
.navbar-brand .logo-text:hover {
    color: var(--primary-color) !important;
}

.navbar-item {
    font-family: var(--font-secondary);
    font-weight: 700;
    color: var(--text-color);
    transition: background-color var(--transition-speed) var(--transition-timing), color var(--transition-speed) var(--transition-timing);
}
.navbar-item:hover, .navbar-item.is-active {
    background-color: var(--primary-color) !important;
    color: var(--heading-color) !important;
}
.navbar-menu {
    border-top: var(--brutalist-border-width) var(--brutalist-border-style) transparent; /* For mobile menu consistency */
}

.navbar-burger {
    color: var(--heading-color);
    height: var(--header-height);
    width: var(--header-height);
}
.navbar-burger span {
    background-color: var(--heading-color);
    height: 3px; /* Thicker lines for brutalist feel */
    width: 20px;
}
.navbar-burger:hover {
    background-color: rgba(0,0,0,0.05);
}

@media screen and (max-width: 1023px) {
    .navbar-menu {
        background-color: var(--white);
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        border-top: var(--brutalist-border);
    }
    .navbar-item {
        border-bottom: 1px solid var(--background-grey-lighter);
    }
}

/* -------------------------------------------------------------------
   5. Hero Section
------------------------------------------------------------------- */
#hero {
    position: relative;
    color: var(--white); /* Ensures text is white by default */
}
#hero .hero-body {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; /* For z-index if needed */
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem; /* Larger for impact */
    font-weight: bold; /* Archivo Black handles this */
    color: var(--white) !important; /* Force white */
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--white) !important; /* Force white */
    opacity: 0.9;
    font-weight: 400; /* Roboto regular for subtitle */
    margin-bottom: 2rem;
}

/* Icon Animation on Hero Button */
.animate-bounce {
    animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

/* -------------------------------------------------------------------
   6. Button Styling (Global)
------------------------------------------------------------------- */
.button, button, input[type="submit"], input[type="button"] {
    font-family: var(--font-secondary);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0; /* Sharp edges for brutalism */
    transition: all var(--transition-speed) var(--transition-timing);
    padding: 0.75em 1.5em; /* Default padding */
}

.button.is-primary {
    background-color: var(--primary-color);
    color: var(--heading-color);
    border: var(--brutalist-border-width) var(--brutalist-border-style) var(--border-color);
}
.button.is-primary:hover, .button.is-primary:focus {
    background-color: var(--primary-color-dark);
    color: var(--black);
    border-color: var(--black);
    box-shadow: var(--brutalist-shadow-light);
    transform: translateY(-2px);
}
.button.is-primary:active {
    transform: translateY(1px);
    box-shadow: none;
}

/* Brutalist Button Style */
.brutalist-button {
    background-color: var(--primary-color);
    color: var(--heading-color);
    border: var(--brutalist-border);
    box-shadow: var(--brutalist-shadow-strong);
    position: relative;
}
.brutalist-button:hover, .brutalist-button:focus {
    background-color: var(--primary-color-dark);
    color: var(--black);
    border-color: var(--black);
    box-shadow: 3px 3px 0px var(--black); /* Slightly reduced shadow on hover */
    top: 2px;
    left: 2px;
}
.brutalist-button:active {
    box-shadow: none;
    top: 4px;
    left: 4px;
}

.brutalist-button-small { /* For card footers, etc. */
    background-color: var(--card-background);
    color: var(--heading-color);
    border: var(--brutalist-border-width) var(--brutalist-border-style) var(--border-color);
    font-size: 0.9rem;
    padding: 0.5em 1em;
    width: 100%; /* Make it full width in card footer */
    text-align: center;
}
.brutalist-button-small:hover, .brutalist-button-small:focus {
    background-color: var(--primary-color);
    color: var(--heading-color);
    border-color: var(--border-color);
}
.brutalist-button-small.is-primary {
    background-color: var(--primary-color);
}
.brutalist-button-small.is-primary:hover {
    background-color: var(--primary-color-dark);
}


.brutalist-button-outline {
    background-color: transparent;
    color: var(--heading-color);
    border: var(--brutalist-border);
    padding: 0.5em 1em;
    font-size: 0.9rem;
}
.brutalist-button-outline:hover, .brutalist-button-outline:focus {
    background-color: var(--heading-color);
    color: var(--white);
    border-color: var(--heading-color);
}

/* -------------------------------------------------------------------
   7. Card Styling
------------------------------------------------------------------- */
.card { /* General Bulma card, can be a base */
    background-color: var(--card-background);
    border-radius: 0; /* No rounded corners */
    overflow: hidden; /* Important for brutalist shadow and image containers */
    display: flex;
    flex-direction: column;
    height: 100%; /* For consistent height in columns */
}

.brutalist-card {
    border: var(--brutalist-border);
    box-shadow: var(--brutalist-shadow-card);
    transition: box-shadow var(--transition-speed) var(--transition-timing), transform var(--transition-speed) var(--transition-timing);
}
.brutalist-card:hover {
    box-shadow: 7px 7px 0px var(--border-color);
    transform: translate(-2px, -2px);
}

.card .card-header-title { /* Bulma override */
    font-family: var(--font-primary);
    background-color: var(--background-grey-lighter);
    border-bottom: var(--brutalist-border);
    padding: 0.75rem 1rem;
    color: var(--heading-color);
}
.card .card-header-title.is-centered {
    justify-content: center;
}

.card .card-content {
    padding: 1.5rem;
    flex-grow: 1; /* Allows content to expand and push footer down */
}
.card .card-content .content p:last-child {
    margin-bottom: 0;
}
.card .card-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.card .card-content ul li {
    margin-bottom: 0.5rem;
}


.card .card-image, .card .image-container { /* For centering images and managing overflow */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Crucial for object-fit */
}
/* Ensure the figure and img take up space correctly */
.card .card-image figure.image {
    width: 100%;
    height: 100%; /* If image-container has fixed height */
}
.card .card-image figure.image img {
    object-fit: cover;
    width: 100%;
    height: 100%; /* Fill the figure */
    display: block;
}

/* Specific Card Types */
.info-card .card-image {
    border-bottom: var(--brutalist-border);
}
.info-card .card-image img {
    /* No specific fixed height, let aspect ratio (is-16by9) define it */
}

.pricing-card .card-header {
    border-bottom: var(--brutalist-border);
}
.pricing-card.is-featured {
    border: var(--brutalist-border-width) var(--brutalist-border-style) var(--primary-color);
    box-shadow: 5px 5px 0px var(--primary-color);
    position: relative; /* For corner ribbon */
}
.pricing-card.is-featured .card-header-title {
    background-color: var(--primary-color);
    color: var(--heading-color);
    border-bottom: var(--brutalist-border); /* Overrides default if needed */
}
.pricing-card .content p.title { /* Price */
    color: var(--heading-color);
}


.award-card .card-image.image-container {
    height: 200px; /* Example fixed height for award icons */
    padding: 1rem;
    background-color: var(--background-grey-lighter); /* Subtle bg for image area */
}
.award-card .card-image figure.is-1by1 { /* Ensure aspect ratio works with fixed height container */
   height: 100%;
}
.award-card .card-image img {
    max-height: 100%; /* Don't exceed container */
    object-fit: contain; /* Show whole icon */
}
.award-card.has-text-centered .card-content {
    text-align: center;
}
.award-card .title.is-5 {
    margin-bottom: 0.25rem;
}
.award-card .subtitle.is-7 {
    color: var(--neutral-grey);
}


.resource-card .card-content {
    padding: 1.25rem;
}
.resource-card .resource-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}
.resource-card .resource-description {
    font-size: 0.9rem;
    color: var(--neutral-grey);
    margin-bottom: 1rem;
}


.card .card-footer {
    border-top: var(--brutalist-border);
    padding: 0; /* Remove default Bulma padding */
}
.card .card-footer-item { /* Bulma override */
    padding: 0; /* Handled by button inside */
}
.card .card-footer-item:not(:last-child) {
    border-right: none; /* Removed default border */
}

/* Corner Ribbon for Featured Plan */
.corner-ribbon {
    width: 150px;
    background: var(--primary-color-dark);
    color: var(--heading-color);
    text-align: center;
    font-size: 0.8rem;
    font-weight: bold;
    line-height: 25px;
    letter-spacing: 1px;
    position: absolute;
    top: 20px;
    right: -35px;
    transform: rotate(45deg);
    box-shadow: 0 0 3px rgba(0,0,0,.3);
    z-index: 10;
    border: 1px solid var(--border-color);
}
.corner-ribbon span {
    display: block;
}


/* -------------------------------------------------------------------
   8. Form Styling
------------------------------------------------------------------- */
.label.brutalist-label {
    font-family: var(--font-primary);
    color: var(--heading-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.input.brutalist-input,
.textarea.brutalist-textarea {
    border-radius: 0;
    border: var(--brutalist-border-width) solid var(--input-border-color);
    box-shadow: var(--brutalist-shadow-light);
    transition: border-color var(--transition-speed) var(--transition-timing), box-shadow var(--transition-speed) var(--transition-timing);
    padding: 0.75em 1em; /* Consistent padding */
    font-family: var(--font-secondary);
}
.input.brutalist-input:focus,
.textarea.brutalist-textarea:focus {
    border-color: var(--input-focus-border-color);
    box-shadow: 0 0 0 2px rgba(var(--primary-color-rgb), 0.3), var(--brutalist-shadow-light); /* Focus ring + existing shadow */
}
.input.brutalist-input::placeholder,
.textarea.brutalist-textarea::placeholder {
    color: var(--neutral-grey);
    opacity: 0.8;
}

.control.has-icons-left .input {
    padding-left: 2.5em; /* Bulma default */
}
.control.has-icons-left .icon.is-left {
    height: 2.5em; /* Bulma default */
    width: 2.5em; /* Bulma default */
    color: var(--neutral-grey);
}

.checkbox.brutalist-checkbox {
    font-size: 0.9rem;
}
.checkbox.brutalist-checkbox input[type="checkbox"] {
    margin-right: 0.5em;
    /* Basic custom checkbox look */
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: var(--brutalist-border-width) solid var(--border-color);
    position: relative;
    top: 4px; /* Align with text */
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.checkbox.brutalist-checkbox input[type="checkbox"]:checked {
    background-color: var(--primary-color);
}
.checkbox.brutalist-checkbox input[type="checkbox"]:checked::after {
    content: '✔'; /* Checkmark */
    font-size: 12px;
    color: var(--heading-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
}


/* Toggle Switch for Pricing */
.toggle-switch {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
}
.toggle-switch input[type="checkbox"] {
    display: none; /* Hide default checkbox */
}
.toggle-switch span { /* The switch itself */
    width: 50px;
    height: 26px;
    background-color: var(--neutral-grey);
    border-radius: 13px; /* Rounded switch */
    position: relative;
    transition: background-color var(--transition-speed);
    margin-right: 10px;
    border: 1px solid var(--border-color);
}
.toggle-switch span::before { /* The knob */
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    top: 2px;
    left: 3px;
    transition: transform var(--transition-speed);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.toggle-switch input[type="checkbox"]:checked + span {
    background-color: var(--primary-color);
}
.toggle-switch input[type="checkbox"]:checked + span::before {
    transform: translateX(24px);
}


/* -------------------------------------------------------------------
   9. Specific Sections Styling
------------------------------------------------------------------- */
/* #mission - general .section-block styles apply */

/* #history - .info-card styling applies */

/* #pricing - .pricing-card styling applies */

/* #awards - .award-card styling applies */

/* #press */
.press-item {
    margin-bottom: 2rem;
}
.press-item .title.is-4 {
    font-size: 1.3rem;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}
.press-item .text-block {
    font-size: 1rem;
    color: var(--neutral-grey);
    margin-bottom: 1rem;
}
.brutalist-hr {
    border: none;
    height: var(--brutalist-border-width);
    background-color: var(--border-color);
    margin: 2rem 0;
}

/* #external-resources - .resource-card styling applies */

/* #contact - .contact-section styling applies */
.contact-section {
    /* Background image set inline, this ensures text readability */
}

/* -------------------------------------------------------------------
   10. Footer
------------------------------------------------------------------- */
.footer-main {
    background-color: var(--heading-color);
    color: var(--text-color-light);
    padding-top: var(--section-padding-y);
    padding-bottom: var(--section-padding-y) / 2;
}
.footer-main .footer-title {
    color: var(--primary-color); /* Yellow titles in footer */
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.footer-main .text-block, .footer-main p {
    color: var(--text-color-light);
    opacity: 0.85;
    font-size: 0.95rem;
}
.footer-main .footer-links li {
    margin-bottom: 0.5rem;
}
.footer-main .footer-links a.custom-link {
    color: var(--text-color-light);
    font-weight: normal;
    opacity: 0.85;
}
.footer-main .footer-links a.custom-link:hover {
    color: var(--primary-color);
    opacity: 1;
    text-decoration: underline;
}
.footer-main .social-links a.custom-link {
    display: inline-block; /* For better spacing if needed */
    padding: 0.25rem 0;
}
.footer-main .brutalist-hr {
    background-color: var(--neutral-grey); /* Lighter HR in dark footer */
    opacity: 0.3;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}
.footer-main .content.has-text-centered p {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Secure Investment Icon Animation */
.secure-invest-icon {
    display: inline-block;
    font-size: 1.5rem; /* Adjust size as needed */
    animation: pulse-shield 2.5s infinite ease-in-out;
}
@keyframes pulse-shield {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 0.7; }
}
.animated-icon-container p {
    margin-bottom: 0.25rem !important;
}


/* -------------------------------------------------------------------
   11. Cookie Consent Popup
------------------------------------------------------------------- */
/* Styles for #cookieConsentPopup are inline in HTML for simplicity as requested,
   but could be moved here if more complexity is needed. Example: */
#cookieConsentPopup p {
    font-size: 0.9em;
    line-height: 1.4;
}
#cookieConsentPopup a {
    color: var(--primary-color); /* Or #FFDD57 from inline style */
    text-decoration: underline;
}
#cookieConsentPopup button {
    /* Styles are inline in HTML, e.g., background-color: var(--primary-color); */
    border-radius: 0;
    padding: 8px 15px; /* Adjust if needed */
    font-size: 0.9em;
}

/* -------------------------------------------------------------------
   12. Specific Page Styles (success.html, privacy.html, terms.html)
------------------------------------------------------------------- */
.page-success-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--header-height)); /* Account for header */
    text-align: center;
    padding: 2rem;
}
.page-success-container .success-card {
    background-color: var(--card-background);
    padding: 2.5rem;
    border: var(--brutalist-border);
    box-shadow: var(--brutalist-shadow-strong);
    max-width: 600px;
}
.page-success-container .success-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: success-pop 0.5s ease-out;
}
@keyframes success-pop {
    0% { transform: scale(0.5); opacity: 0; }
    80% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}
.page-success-container h1 {
    color: var(--heading-color);
    margin-bottom: 1rem;
}
.page-success-container p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.page-legal-content {
    padding-top: calc(var(--header-height) + 2rem); /* Space for sticky header + extra */
    padding-bottom: var(--section-padding-y);
    min-height: calc(100vh - var(--header-height) - 100px); /* Approx footer height */
}
.page-legal-content .container {
    max-width: 800px; /* Readable line length for legal text */
    background-color: var(--white);
    padding: 2rem;
    border: var(--brutalist-border);
    box-shadow: var(--brutalist-shadow-card);
}
.page-legal-content h1.title {
    margin-bottom: 1.5rem;
    text-align: left;
}
.page-legal-content h2.subtitle, .page-legal-content h3.subtitle {
    font-family: var(--font-primary);
    color: var(--heading-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}
.page-legal-content p, .page-legal-content li {
    margin-bottom: 1rem;
    line-height: 1.7;
}
.page-legal-content ul, .page-legal-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}


/* -------------------------------------------------------------------
   13. Responsive Design Adjustments (Bulma handles most)
------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    .section-block {
        padding-top: calc(var(--section-padding-y) * 0.75);
        padding-bottom: calc(var(--section-padding-y) * 0.75);
    }
    .footer-main .columns { /* Stack columns in footer on mobile */
        display: block;
    }
    .footer-main .column {
        margin-bottom: 2rem;
    }
     .footer-main .column:last-child {
        margin-bottom: 0;
    }
    .pricing-card {
        margin-bottom: 1.5rem; /* Add space between stacked pricing cards */
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .brutalist-button {
        font-size: 0.9rem;
        padding: 0.6em 1.2em;
        box-shadow: 3px 3px 0px var(--border-color);
    }
    .brutalist-button:hover, .brutalist-button:focus {
        box-shadow: 2px 2px 0px var(--black);
        top: 1px;
        left: 1px;
    }
     .brutalist-button:active {
        top: 2px;
        left: 2px;
    }
    #cookieConsentPopup .container {
        flex-direction: column;
        align-items: flex-start;
    }
    #cookieConsentPopup p {
        margin-bottom: 10px;
    }
    #cookieConsentPopup button {
        width: 100%;
        text-align: center;
    }
}

/* AOS Animations - Ensure content is visible before animation */
[data-aos] {
    /*opacity: 0;*/
    transition-property: transform, opacity;
}
[data-aos].aos-animate {
    opacity: 1;
}