/* style.css */

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

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base font size */
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden; /* Prevent horizontal scroll */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    opacity: 1 !important;
}

/* --- CSS Variables --- */
:root {
    /* Split-Complementary Color Scheme */
    --primary-color: #3E64FF;    /* Vibrant Blue */
    --secondary-color: #1DD1A1;  /* Teal/Turquoise */
    --accent-color: #FF9F43;     /* Orange */

    --primary-dark: #2a4cc5;     /* Darker Blue */
    --secondary-dark: #16a085;   /* Darker Teal */
    --accent-dark: #e68a2e;      /* Darker Orange */

    --text-color: #333333;       /* Dark Gray for body */
    --text-light: #FFFFFF;       /* White */
    --text-muted: #6c757d;       /* Medium Gray */
    --subtitle-color: #555555;   /* Slightly darker than muted */

    --bg-color: #F8F9FA;         /* Very Light Gray/Off-White */
    --bg-alt-color: #eef2f7;     /* Slightly cooler light gray */
    --footer-bg-color: #2c3e50;  /* Dark Blue-Gray for Footer */

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-bg-darker: rgba(0, 0, 0, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-border-darker: rgba(255, 255, 255, 0.1);
    --backdrop-blur: 10px;

    /* Fonts */
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Merriweather', serif;

    /* UI Elements */
    --border-radius: 12px;
    --box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --box-shadow-light: 0 4px 15px rgba(0, 0, 0, 0.08);
    --transition-speed: 0.4s;
    --transition-easing: cubic-bezier(0.25, 0.8, 0.25, 1); /* Non-linear motion */

    /* Spacing */
    --section-padding: 4rem 1.5rem;
    --container-max-width: 1140px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6, .title {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--text-color); /* Darker for better contrast on light bg */
    line-height: 1.3;
    margin-bottom: 1rem; /* Consistent spacing */
}
.title.is-1 { font-size: 3rem; }
.title.is-2 { font-size: 2.5rem; margin-bottom: 2rem; }
.title.is-3 { font-size: 2rem; }
.title.is-4 { font-size: 1.5rem; }
.title.is-5 { font-size: 1.25rem; }
.title.is-6 { font-size: 1rem; }

/* Section Titles */
.section-title {
    color: #222222; /* Ensure high contrast */
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 0.5rem;
}
.section-title::after { /* Subtle underline */
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.subtitle {
    font-family: var(--body-font);
    font-weight: 400;
    color: var(--subtitle-color);
}
.subtitle.is-3 { font-size: 1.5rem; }
.subtitle.is-4 { font-size: 1.25rem; }
.subtitle.is-6 { font-size: 1rem; color: var(--text-muted); }

p, .content, .body-text {
    font-family: var(--body-font);
    font-size: 1.05rem; /* Slightly larger body text */
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.25rem;
}
.content.is-medium { font-size: 1.1rem; }
.content ul { list-style: disc; margin-left: 20px; margin-bottom: 1rem; }

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

strong { font-weight: 700; }

/* --- Layout & Container --- */
.container {
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.section {
    padding: var(--section-padding);
    position: relative; /* For absolute positioned elements within sections */
}
.section-alternative {
    background-color: var(--bg-alt-color);
}

/* Bulma Overrides / Adjustments */
.columns {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
    margin-top: -0.75rem;
}
.column {
    padding: 0.75rem;
}
.column.is-two-thirds { width: 66.6666%; }
.column.is-one-third { width: 33.3333%; }
.column.is-four-fifths { width: 80%; }
.column.is-half { width: 50%; }

/* --- Glassmorphism --- */
.glassmorphism {
    background: var(--glass-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--backdrop-blur));
    -webkit-backdrop-filter: blur(var(--backdrop-blur));
    box-shadow: var(--box-shadow-light);
    overflow: hidden; /* Ensure content respects border-radius */
}

.footer-glassmorphism, .header.glassmorphism {
    background: var(--glass-bg-darker);
    border: 1px solid var(--glass-border-darker);
    backdrop-filter: blur(var(--backdrop-blur));
    -webkit-backdrop-filter: blur(var(--backdrop-blur));
}


/* --- Header / Navbar --- */
.header {
    transition: background-color var(--transition-speed) ease-in-out;
    padding: 0.5rem 0;
    z-index: 1030; /* Ensure it's above other content */
}
.header.is-fixed-top {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
}
.navbar {
    background-color: transparent; /* Let header handle glassmorphism */
    min-height: 3.25rem; /* Standard Bulma height */
}
.navbar-brand .navbar-item {
    color: var(--text-light); /* Ensure visibility on glass bg */
    font-weight: bold;
    font-family: var(--heading-font);
}
.site-title {
    font-size: 1.5rem;
    color: var(--text-light);
}

.navbar-menu {
    background-color: transparent; /* Let header handle glassmorphism */
    box-shadow: none;
}
.navbar-item {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--heading-font);
    font-weight: 500;
    transition: color var(--transition-speed) var(--transition-easing), background-color var(--transition-speed) var(--transition-easing);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}
.navbar-item:hover, .navbar-item.is-active {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}
.navbar-burger {
    color: var(--text-light);
}
.navbar-burger span {
    background-color: var(--text-light);
    height: 2px; /* Thinner lines */
}

/* Mobile Menu */
@media screen and (max-width: 1023px) {
    .navbar-menu {
        position: relative;
        left: 0;
        width: 100%;
        background: #222; /* Glass effect for mobile menu */
        backdrop-filter: blur(var(--backdrop-blur));
        -webkit-backdrop-filter: blur(var(--backdrop-blur));
        border-top: 1px solid var(--glass-border-darker);
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        padding: 0.5rem 0;
        display: none; /* Hidden by default */
    }
    .navbar-menu.is-active {
        display: block;
    }
    .navbar-item {
        color: var(--text-light);
        display: block; /* Stack items vertically */
        text-align: center;
    }
    .navbar-item:hover, .navbar-item.is-active {
        background-color: rgba(255, 255, 255, 0.2);
    }
    .navbar-end .navbar-item {
        justify-content: center;
    }
}

/* --- Footer --- */
.footer {
    background-color: var(--footer-bg-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 1.5rem 2rem 1.5rem; /* More top padding */
    border-top: 3px solid var(--primary-color);
}
.footer .title {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}
.footer-title::after { /* Remove general underline */
    display: none;
}
.footer .content p, .footer .body-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}
.footer a, .footer-link {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-speed) var(--transition-easing);
}
.footer a:hover, .footer-link:hover {
    color: var(--text-light);
    text-decoration: underline;
}
.footer hr {
    background-color: rgba(255, 255, 255, 0.2);
    height: 1px;
    margin: 2rem 0;
}
.footer ul {
    list-style: none;
    margin-left: 0;
}
.footer ul li {
    margin-bottom: 0.5rem;
}
/* Footer Social Links (Text only as requested) */
.footer .column:last-child p {
    margin-bottom: 0.5rem; /* Spacing between text links */
}

/* --- Global Components --- */

/* Buttons (Global Styling) */
.button, button, input[type='submit'], input[type='button'] {
    font-family: var(--heading-font);
    font-weight: 600;
    border-radius: 8px;
    padding: 0.8em 1.8em;
    border: none;
    cursor: pointer;
    transition: all var(--transition-speed) var(--transition-easing);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: inline-block; /* Ensure proper alignment */
    text-align: center;
}
.button.is-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}
.button.is-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.button.is-link { /* Use secondary color for link buttons */
    background-color: var(--secondary-color);
    color: var(--text-light);
}
.button.is-link:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.button.is-large {
    font-size: 1.1rem;
    padding: 1em 2.2em;
}
.button.is-medium {
    font-size: 1rem;
    padding: 0.9em 2em;
}

/* Modern Buttons (Specific style if needed, inheriting from .button) */
.modern-button {
    /* Add any specific overrides if necessary, e.g., gradients */
}

/* Cards (Global Base) */
.card {
    background-color: #fff; /* Solid background for content cards */
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-light);
    transition: transform var(--transition-speed) var(--transition-easing), box-shadow var(--transition-speed) var(--transition-easing);
    height: 100%; /* Make cards in columns equal height */
    display: flex; /* Enable flex properties for centering */
    flex-direction: column; /* Stack image and content vertically */
    /* align-items: center; Removed - better handled in specific card types */
    overflow: hidden; /* Clip content */
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}
.card .card-image { /* Ensure image container exists */
    overflow: hidden;
    position: relative; /* For potential overlays */
    width: 100%;
    display: flex; /* Center image within */
    justify-content: center;
    align-items: center;
}
.card .card-image img {
    display: block;
    width: 100%;
    height: auto; /* Maintain aspect ratio by default */
    object-fit: cover; /* Cover the container */
    transition: transform var(--transition-speed) var(--transition-easing);
}
.card:hover .card-image img {
    transform: scale(1.05);
}
.card .card-content {
    padding: 1.5rem;
    flex-grow: 1; /* Allow content to fill remaining space */
    text-align: center; /* Center text content */
}
.card .card-content .title {
     margin-bottom: 0.5rem;
}
.card .card-content .subtitle {
    margin-bottom: 1rem;
    color: var(--text-muted);
}
.card .card-content .body-text {
    font-size: 0.95rem;
    color: var(--text-color);
}
.card.glassmorphism { /* Override for glass cards */
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}
.card.glassmorphism .card-content {
     /* Adjust text color if needed for glass background, assuming dark enough */
     color: var(--text-color); /* Default dark text */
}
.card.glassmorphism .title, .card.glassmorphism .subtitle {
    color: inherit; /* Inherit from card-content */
}

/* Specific Card Types */
.methodology-card .icon i { font-size: 2.5rem; }
.methodology-card .title { margin-top: 1rem; }

.resource-card .title { font-size: 1.1rem; }
.resource-card .subtitle { font-size: 0.9rem; }

.testimonial-card blockquote {
    font-style: italic;
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
    margin-bottom: 1rem;
}
.testimonial-card p strong {
    display: block; /* Ensure name is on new line */
    margin-top: 0.5rem;
    color: var(--primary-dark); /* Highlight name */
}

.team-card .card-image .image-container {
    height: 250px; /* Fixed height for team member images */
    overflow: hidden;
}
.team-card .card-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center top; /* Focus on faces */
}
.team-card .card-content {
    padding-top: 1rem;
}

/* Forms (Modern Inputs) */
.label.form-label {
    color: var(--text-color);
    font-weight: 600;
    font-family: var(--heading-font);
    margin-bottom: 0.5rem;
    display: block; /* Ensure label is above input */
    text-align: left;
}
.input.modern-input,
.textarea.modern-input,
.select select.modern-input {
    border-radius: 8px;
    border: 1px solid #ced4da;
    padding: 0.8em 1em;
    font-family: var(--body-font);
    font-size: 1rem;
    transition: border-color var(--transition-speed) var(--transition-easing), box-shadow var(--transition-speed) var(--transition-easing);
    background-color: #fff; /* Ensure readable background */
    color: var(--text-color);
}
.input.modern-input:focus,
.textarea.modern-input:focus,
.select select.modern-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb, 62, 100, 255), 0.25); /* Use RGB if defined or fallback */
    outline: none;
}
/* Placeholder styling */
.input.modern-input::placeholder,
.textarea.modern-input::placeholder {
    color: #adb5bd;
    opacity: 1;
}
.select.is-fullwidth { width: 100%; }
.select:not(.is-multiple):not(.is-loading)::after {
    border-color: var(--primary-color); /* Style dropdown arrow */
}
.checkbox label, label.checkbox { /* Improve checkbox label styling */
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.checkbox input[type="checkbox"] {
    margin-right: 0.5em;
    cursor: pointer;
}
.checkbox a { font-size: inherit; } /* Make links same size */


/* --- Section Specific Styles --- */

/* Hero Section */
#hero {
    color: var(--text-light); /* Ensure white text */
    position: relative; /* Needed for parallax elements */
    background-attachment: fixed; /* Parallax effect */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
/* Dark overlay is applied via inline style linear-gradient */
#hero .hero-body {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1; /* Above background */
}
#hero .title, #hero .subtitle {
    color: var(--text-light); /* Override default title/subtitle color */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5); /* Enhance readability */
}
#hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
}
#hero .hero-subtitle {
    font-size: 1.8rem;
    margin-top: 1rem;
    font-weight: 400;
}
#hero .button {
    margin-top: 2rem;
}
/* Parallax Element Placeholder Styling */
.parallax-element {
    z-index: 0; /* Behind content */
    /* JS will control position/speed */
    /* background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(5px); */
}


/* About Us Section */
#about-us .image-container img {
    border-radius: var(--border-radius);
}
#about-us .button {
    margin-top: 1.5rem;
}

/* Research Section */
#research .image-container img {
    border-radius: var(--border-radius);
}
/* Stat Widgets */
.stats-widgets .stat-widget {
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform var(--transition-speed) var(--transition-easing);
}
.stats-widgets .stat-widget:hover {
    transform: scale(1.05);
}
.stats-widgets .stat-widget .title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}
.stats-widgets .stat-widget .heading {
    font-family: var(--heading-font);
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Vision Section */
#vision .image-container img {
    border-radius: var(--border-radius);
}

/* Testimonials Section */
/* Basic carousel structure - JS library needed for functionality */
.testimonials-carousel {
    /* Placeholder styles, customize based on JS library */
    overflow: hidden; /* Hide slides outside the container */
    position: relative;
}
.testimonial-slide {
    /* display: none; /* Hide slides by default, JS will show active */
    /* padding: 0 1rem; /* Spacing for arrows if added */
    margin-bottom: 1rem; /* Space between slides if shown vertically */
}
/* .testimonial-slide.is-active { display: block; } */

/* External Resources Section */
#external-resources .resource-card a {
    color: var(--primary-color);
    font-weight: bold;
}
#external-resources .resource-card a:hover {
    color: var(--primary-dark);
}

/* Contact Section */
#contact .contact-form-card {
    padding: 2.5rem;
}
#contact .contact-info-card {
    padding: 1.5rem;
    background-color: var(--bg-alt-color); /* Different background */
}
#contact .contact-info-card hr {
    background-color: rgba(0,0,0,0.1); height: 1px; margin: 1rem 0;
}
#contact .contact-info-card i { /* Style icons if used */
    margin-right: 0.75rem;
    color: var(--primary-color);
    width: 20px; /* Align icons */
    text-align: center;
}
#contact .map-card img {
    border-radius: var(--border-radius);
    display: block;
}
#contact .map-card p {
    margin-top: 0.5rem;
    color: var(--text-muted);
}

/* --- Page Specific Styles --- */

/* Success Page */
body.success-page { /* Add class="success-page" to body in success.html */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
body.success-page .main-content {
    flex-grow: 1;
    display: flex;
    align-items: center; /* Vertical centering */
    justify-content: center; /* Horizontal centering */
}
body.success-page .section {
    width: 100%; /* Ensure section takes full width for centering */
}

/* Privacy & Terms Pages */
body.privacy-page .main-content,
body.terms-page .main-content {
    padding-top: 80px; /* Adjust based on fixed header height */
}
.page-title-section, .page-title-section-short {
    padding: 4rem 1.5rem; /* Standard padding */
    margin-bottom: 0; /* Remove bottom margin */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.page-title-section-short {
    padding: 3rem 1.5rem; /* Shorter banner */
}
.page-title-section .title, .page-title-section-short .title,
.page-title-section .subtitle, .page-title-section-short .subtitle {
    color: var(--text-light);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* --- Warped Grid Elements (Subtle Example) --- */
.warped-grid-item {
   /* Apply to image containers or cards */
   /* Example: Slight rotation or skew on hover */
   /* transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); */
}
/* .warped-grid-item:hover {
   transform: rotate(2deg) scale(1.02);
} */


/* --- Animations & Transitions --- */

/* AOS Animation Integration (Elements fade/slide in) */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}
[data-aos].aos-animate {
    opacity: 1;
}
/* Define specific AOS animations if needed, e.g., custom fade-up */
[data-aos="fade-up"] {
    transform: translateY(30px);
}
[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}
/* Add more for fade-left, fade-right, zoom-in etc. */
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="zoom-in"] { transform: scale(0.9); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }


/* Non-linear motion is applied via var(--transition-easing) */

/* --- Responsiveness --- */
@media screen and (max-width: 768px) {
    html { font-size: 15px; }
    .title.is-1, #hero .hero-title { font-size: 2.5rem; }
    .title.is-2 { font-size: 2rem; }
    .subtitle.is-3, #hero .hero-subtitle { font-size: 1.3rem; }

    .section { padding: 3rem 1rem; }
    #hero .hero-body { padding: 2rem 1rem; }

    .columns.is-vcentered {
        flex-direction: column; /* Stack columns on mobile */
    }
    .columns.is-vcentered .column:first-child {
        order: 2; /* Put text below image if desired */
    }
     .columns.is-vcentered .column:last-child {
        order: 1;
    }
     /* Adjust column widths */
    .column.is-two-thirds, .column.is-one-third, .column.is-four-fifths, .column.is-half {
        width: 100%;
        flex: none; /* Disable flex sizing */
    }
    #contact .columns .column.is-one-third { /* Keep contact info layout reasonable */
         margin-top: 2rem;
    }

    .footer .columns {
        flex-direction: column;
        text-align: center;
    }
     .footer .column {
        margin-bottom: 2rem;
    }
     .footer .column:last-child {
        margin-bottom: 0;
    }

     /* Adjust stat widget layout */
     .stats-widgets .column.is-half {
         width: 100%; /* Full width */
         margin-bottom: 1rem;
     }

     /* Ensure contact form card fits */
     #contact .contact-form-card {
         padding: 1.5rem;
     }

     /* Adjust privacy/terms padding */
    body.privacy-page .main-content,
    body.terms-page .main-content {
        padding-top: 70px; /* Adjust for potentially smaller mobile header */
    }
}

/* --- Utility Classes --- */
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 2.5rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 2.5rem !important; }
.mb-6 { margin-bottom: 3rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 2.5rem !important; }
.p-6 { padding: 3rem !important; }
.has-text-centered { text-align: center !important; }
.has-text-left { text-align: left !important; }
.has-text-right { text-align: right !important; }
.has-text-primary { color: var(--primary-color) !important; }
.has-text-white { color: var(--text-light) !important; }
.is-rounded { border-radius: 50%; } /* For images */


/* --- Read More Link Style --- */
.read-more-link {
    display: inline-block;
    margin-top: 1rem;
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    position: relative;
    padding-right: 1.2em; /* Space for arrow */
}
.read-more-link::after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform var(--transition-speed) var(--transition-easing);
}
.read-more-link:hover {
    color: var(--accent-dark);
    text-decoration: none;
}
.read-more-link:hover::after {
    transform: translateY(-50%) translateX(5px);
}


/* --- Cookie Consent Bar --- */
/* Basic styling is inline in HTML, this can override/enhance */
#cookie-consent-popup {
    font-family: var(--body-font); /* Use body font */
}
#cookie-consent-popup p {
    color: #eee; /* Lighter text on dark bg */
    margin-bottom: 0; /* Remove default paragraph margin */
}
#cookie-consent-popup a {
    color: #bbb; /* Muted link color */
}
#cookie-consent-popup button {
    background-color: var(--secondary-color); /* Use secondary color */
    transition: background-color var(--transition-speed) var(--transition-easing);
    font-family: var(--heading-font);
    font-size: 0.9rem;
    padding: 0.6em 1.2em;
    text-transform: uppercase;
}
#cookie-consent-popup button:hover {
    background-color: var(--secondary-dark);
}

[data-aos^=fade][data-aos^=fade] {
    opacity: 1 !important;
}