/* ==========================================================================
   LOCAL FONTS - Zero External Blocking
   ========================================================================== */

/* Bootstrap Icons */
@font-face {
  font-family: "bootstrap-icons";
  src: url("/assets/fonts/bootstrap-icons.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Font Awesome Solid */
@font-face {
  font-family: "Font Awesome 6 Free";
  src: url("/assets/webfonts/fa-solid-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Font Awesome Regular */
@font-face {
  font-family: "Font Awesome 6 Free";
  src: url("/assets/webfonts/fa-regular-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Font Awesome Brands */
@font-face {
  font-family: "Font Awesome 6 Brands";
  src: url("/assets/webfonts/fa-brands-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   GLOBAL STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Urbanist", sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    color: #333;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}


/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-align: center;
    font-weight: 600;
    border-radius: 0;
    border: 1px solid #208315;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #208315;
    color: #fff;
}

.btn-primary:hover {
    background-color: #fff;
    color: #1c2b39;
    border-color: #208315;
}

.btn-secondary {
    background-color: transparent;
    color: #208315;
    border: 1px solid #208315;
}

.btn-secondary:hover {
    background-color: #208315;
    color: #fff;
    border-color: #208315;
}


/* ==========================================================================
   NAVIGATION
   ========================================================================== */
/* Base Navbar */
        .navbar {
            background-color: #208315;
            padding: 1rem 0;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .navbar .navbar-brand {
            max-width: 140px;
            z-index: 1002;
            margin-right: 2rem;
            padding-bottom: 0.5rem;
        }

        .navbar .navbar-brand img {
            max-width: 100%;
            height: auto;
        }

        /* Desktop Nav Links */
        .navbar .navbar-nav {
            gap: 1.25rem;
        }

        .navbar .nav-link {
            color: #fff;
            font-size: 1.125rem;
            font-weight: 500;
            transition: color 0.2s ease;
        }

        .navbar .nav-link:hover {
            color: #D9EEF2;
        }

        /* Hamburger Toggle - Always 3 Lines */
        .sidebar-toggle {
            border: none;
            background: transparent;
            padding: 0.5rem;
            width: 32px;
            height: 28px;
            position: relative;
            z-index: 1002;
            display: none;
            cursor: pointer;
        }

        .sidebar-toggle:focus {
            outline: none;
            box-shadow: none;
        }

        /* Remove black border */
        .sidebar-toggle:focus-visible {
            outline: none;
            box-shadow: none;
        }

        .sidebar-toggle span {
            display: block;
            width: 100%;
            height: 3px;
            background: #fff;
            border-radius: 2px;
            position: absolute;
            left: 0;
            transition: all 0.3s ease;
        }

        .sidebar-toggle span:nth-child(1) {
            top: 4px;
        }

        .sidebar-toggle span:nth-child(2) {
            top: 50%;
            transform: translateY(-50%);
        }

        .sidebar-toggle span:nth-child(3) {
            bottom: 4px;
        }

        /* Cross animation when open */
        .sidebar-toggle.open span:nth-child(1) {
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
        }

        .sidebar-toggle.open span:nth-child(2) {
            opacity: 0;
        }

        .sidebar-toggle.open span:nth-child(3) {
            bottom: 50%;
            transform: translateY(50%) rotate(-45deg);
        }

        /* Sidebar Overlay */
        .sidebar-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .sidebar-overlay.active {
            display: block;
            opacity: 1;
        }

        /* Mobile Sidebar Menu */
        @media (max-width: 991px) {
            .sidebar-toggle {
                display: block;
            }
            
            .navbar .navbar-brand {
                max-width: 120px;
                margin-right: 0;
            }
            
            /* Hide desktop nav */
            .navbar-nav {
                display: none;
            }
            
            /* Left Sidebar */
            .sidebar-menu {
                display: block !important;
                position: fixed;
                top: 0;
                left: -280px;
                width: 280px;
                height: 100vh;
                background: #1a1a1a;
                padding-top: 80px;
                z-index: 1001;
                overflow-y: auto;
                transition: left 0.3s ease;
                box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
            }
            
            .sidebar-menu.show {
                left: 0;
            }
            
            .sidebar-menu .navbar-nav {
                display: flex;
            }
            
            /* Close button inside sidebar */
            .sidebar-close {
                position: absolute;
                top: 20px;
                right: 20px;
                width: 32px;
                height: 32px;
                background: transparent;
                border: none;
                cursor: pointer;
                z-index: 1002;
                padding: 0;
            }

            .sidebar-close:focus {
                outline: none;
                box-shadow: none;
            }

            .sidebar-close span {
                display: block;
                width: 100%;
                height: 2.5px;
                background: #fff;
                position: absolute;
                left: 0;
                top: 50%;
            }

            .sidebar-close span:first-child {
                transform: translateY(-50%) rotate(45deg);
            }

            .sidebar-close span:last-child {
                transform: translateY(-50%) rotate(-45deg);
            }
            
            /* Menu Items */
            .navbar-nav {
                flex-direction: column;
                gap: 0;
                padding: 0;
                margin: 0;
            }
            
            .navbar-nav .nav-item {
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .navbar-nav .nav-item:last-child {
                border-bottom: none;
            }
            
            .navbar-nav .nav-link {
                padding: 1.125rem 1.5rem;
                color: #e0e0e0;
                font-size: 1rem;
                display: block;
                transition: all 0.2s ease;
                border-left: 4px solid transparent;
            }
            
            .navbar-nav .nav-link:hover {
                background: #2a2a2a;
                color: #fff;
                border-left-color: #208315;
                padding-left: 1.75rem;
            }
            
            .navbar-nav .nav-link.active {
                background: #2a2a2a;
                color: #fff;
                border-left-color: #208315;
                font-weight: 600;
            }
        }

        /* Small Mobile */
        @media (max-width: 576px) {
            .navbar {
                padding: 0.75rem 0;
            }
            
            .navbar .navbar-brand {
                max-width: 140px;
            }
            
            .navbar-nav{
                margin-top: 1.5rem;
            }
        
            
            .sidebar-menu {
                width: 260px;
                left: -260px;
                padding-top: 70px;
            }
            
            .sidebar-toggle {
                width: 30px;
                height: 26px;
            }
            
            .sidebar-toggle span {
                height: 2.5px;
            }
        }

/* ==========================================================================
   COUNTRY DROPDOWN
   ========================================================================== */

.country-dropdown {
    position: relative;
    display: inline-block;
}

button.country-dropdown-toggle,
.country-dropdown button.country-dropdown-toggle {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    font-family: "Urbanist", sans-serif !important;
    border-radius: 0 !important;
    border: 1px solid #208315 !important;
    background: #ffffff !important;
    background-color: #ffffff !important;
    color: #208315 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
}

.country-icon {
    flex-shrink: 0;
}

button.country-dropdown-toggle:hover,
.country-dropdown button.country-dropdown-toggle:hover {
    background: #208315 !important;
    background-color: #208315 !important;
    color: #fff !important;
    border-color: #208315 !important;
}

.country-dropdown-toggle::after {
    content: '▼';
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.country-dropdown.active .country-dropdown-toggle::after {
    transform: rotate(180deg);
}

.country-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff !important;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 200px;
    max-height: 350px;
    overflow-y: auto;
    display: none;
    z-index: 9999;
}

.country-dropdown.active .country-dropdown-menu {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.country-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    text-decoration: none !important;
    color: #333 !important;
    transition: background 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.country-dropdown-item:last-child {
    border-bottom: none;
}

.country-dropdown-item:hover {
    background: #f8f9fa !important;
    color: #208315 !important;
}

.country-flag {
    width: 26px;
    height: 26px;
    border-radius: 3px;
    object-fit: cover;
    flex-shrink: 0;
}

.country-name {
    font-size: 14px;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .country-dropdown-toggle {
        padding: 0.65rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .country-dropdown-menu {
        min-width: 180px;
        max-height: 260px;
    }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    display: flex;
    align-items: center;
    padding: 3rem 0;
    min-height: 80vh;
    background: #fff url(https://www.snatchsavings.com/wp-content/uploads/2025/08/hero-gradient-bg.webp) center/cover;
    border-bottom: 1px solid #ccc;
    position: relative;
    z-index: 9;
}

.hero__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.hero__content {
    flex: 1 1 400px;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 880px;
}

.hero__description {
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
    max-width: 720px;
    color: #555;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__image {
    flex: 1 1 100px;
}


/* ==========================================================================
   BRAND HIGHLIGHTS SECTION
   ========================================================================== */
.brand-highlights {
    padding: 4rem 0 3rem;
}

.brand-highlights__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.brand-highlights__image,
.brand-highlights__content {
    flex: 1 1 300px;
}

.brand-highlights__image {
    padding-right: 3rem;
}

.brand-highlights__title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.brand-highlights__description {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}


/* ==========================================================================
   HOW TO SAVE SECTION
   ========================================================================== */
.how-to-save {
    padding-bottom: 4rem;
}

.how-to-save__container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.how-to-save__content {
    flex: 1 1 300px;
}

.how-to-save__title {
    font-size: 1.75rem;
    font-weight: 600;
    max-width: 500px;
    margin-bottom: 1rem;
}

.how-to-save__description {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

.how-to-save__image {
    flex: 1 1 300px;
    text-align: center;
    padding-left: 3rem;
}


/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
.features-section {
    padding: 5rem 0;
    background-color: #D9EEF2;
    position: relative;
    z-index: 9;
}

.features-section__card-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
}

.features-section__card {
    flex: 1 1 250px;
    padding: 1.5rem 1rem 2rem;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-section__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.features-section__icon {
    max-width: 3.5rem;
    margin-bottom: 2.5rem;
}

.features-section__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.features-section__description {
    font-size: 0.9375rem;
    color: #454545;
    line-height: 1.7;
}


/* ==========================================================================
   HOW TO USE PROMO SECTION
   ========================================================================== */
.how-to-use-promo {
    padding: 5rem 0;
    background-color: #fff;
}

.how-to-use-promo__header {
    max-width: 800px;
    text-align: center;
    margin: 0 auto 5rem;
}

.how-to-use-promo__title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.how-to-use-promo__description {
    font-size: 1.25rem;
    color: #6c757d;
}

.how-to-use-promo__steps {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.how-to-use-promo__step {
    background-color: #f8f9fa;
    padding: 1rem 3rem 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.how-to-use-promo__step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: #208315;
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    border-radius: 50%;
    border: 4px solid #fff;
    margin: -3rem auto 0;
    position: relative;
    z-index: 1;
}

.how-to-use-promo__step-headline {
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
    margin: 1.5rem 0 1rem;
}

.how-to-use-promo__step-text {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.7;
}


/* ==========================================================================
   WHY SECTION
   ========================================================================== */
.why-section {
    padding: 5rem 0;
    background-color: #D9EEF2;
    position: relative;
    z-index: 9;
}

.why-section__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.why-section__content {
    flex: 1;
}

.why-section__title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.why-section__description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.8;
}

.why-section__graphic-container {
    flex: 1;
    padding-left: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* ==========================================================================
   COUNTRIES SECTION
   ========================================================================== */
.countries {
    background-color: #fff;
    padding: 4rem 0;
}

.countries__title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2rem;
    font-weight: 600;
}

.countries__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.countries__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #232323;
    transition: all 0.3s ease;
}

.countries__link:hover .countries__name {
    color: #208315;
    text-decoration: underline;
}

.countries__flag {
    max-width: 2rem;
    height: auto;
}

.countries__name {
    font-size: 1.125rem;
    font-weight: 500;
}


/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq {
    padding: 5rem 0;
    background-color: #fff;
    border-top: 1px solid #ccc;
}

.faq__container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
}

.faq__header {
    flex: 1 1 400px;
    max-width: 500px;
    position: sticky;
    top: 150px;
    height: fit-content;
}

.faq__title {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0 0 1rem;
}

.faq__description {
    font-size: 1.125rem;
    color: #6c757d;
    line-height: 1.7;
}

.faq__list {
    flex: 1 1 400px;
    max-width: 800px;
}

.faq__item {
    margin-bottom: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    overflow: hidden;
}

.faq__question {
    font-size: 1.25rem;
    font-weight: 500;
    padding: 1.5rem 1rem;
    cursor: pointer;
    background-color: #fff;
    position: relative;
    margin: 0;
}

.faq__question h3{
    font-size: 1.3rem;
}

.faq__question::marker {
    content: "";
}

.faq__question::after {
    content: "+";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #208315;
    font-weight: 300;
}

.faq__item[open] .faq__question::after {
    content: "-";
}

.faq__answer {
    padding: 0 1rem 1rem;
    background-color: #fff;
    font-size: 1.125rem;
    line-height: 1.9;
    color: #454545;
}


/* ==========================================================================
   BLOG SECTIONS
   ========================================================================== */
.blog-section {
    padding: 5rem 0;
    background-color: #D9EEF2;
}

.blog-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0 0 2.5rem;
    text-align: center;
}

.home-blog__card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.home-blog__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.home-blog__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.home-blog__content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.home-blog__content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.home-blog__content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.blog-section .blog-cta {
    margin-top: 2.5rem;
}

.blog-content figcaption{
    text-align: center;
}

.blog-content .image img{
    margin:1% auto;
}

.blog-content ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-left: 0;
}

.category-tabs .nav-item{
    background: #208315;
}

.category-tabs .nav-item a{
    color: #fff;
}

/* Country Blogs Section */
.country-blogs-section {
    background-color: #fff;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.country-blog-card .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
}


/* ==========================================================================
   INNER PAGES
   ========================================================================== */

/* About Page */
.about-hero {
    min-height: 40vh;
    background: #f5f5f5;
    display: flex;
    align-items: center;
}

.about-hero h1 {
    color: #1d1d1d;
    font-size: 2.5rem;
}

.about-hero p {
    color: #2d2d2d;
    font-weight: 400;
    padding-top: 1rem;
}

.about-content h2,
.about-content h3 {
    color: #2d2d2d;
    margin: 2rem 0 1rem;
}

.about-content p {
    color: #555;
    line-height: 1.7;
}

/* Mission Section */
.mission {
    padding: 5rem 0;
    background-color: #D9EEF2;
    position: relative;
    z-index: 9;
}

.mission__title,
.mission__subtitle {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.mission__subtitle {
    font-size: 1.5rem;
}

.mission__highlight {
    color: #208315;
}

.mission__paragraph {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.mission__cta {
    margin-top: 2rem;
}

/* Blog Listing Page */
.blogs-listing {
    padding: 4rem 0;
}

.inner-hero {
    min-height: 40vh;
    background: #f5f5f5;
}

/* Blog Single */
.blog-single h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    color: #222;
}

.blog-single__content {
    color: #444;
    line-height: 1.8;
}

.blog-single__content p {
    margin-bottom: 1.2rem;
}

.blog-single__content h2,
.blog-single__content h3 {
    margin: 2rem 0 1rem;
    font-weight: 600;
    color: #222;
}

.blog-single__content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 1.5rem 0;
}

/* Privacy, Cookie, Terms Pages */
.privacy-policy h2,
.cookie-policy h2,
.terms h2 {
    color: #222;
    border-left: 4px solid #208315;
    padding-left: 0.6rem;
    margin: 2rem 0 1rem;
}

.privacy-policy p,
.privacy-policy ul,
.cookie-policy p,
.cookie-policy ul,
.terms p,
.terms ul {
    color: #555;
    line-height: 1.7;
}

.privacy-policy ul,
.cookie-policy ul,
.terms ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

/* Contact Page */
.contact-page .card {
    border-radius: 12px;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: #0f0f0f;
    padding: 3rem 0 1rem;
    color: #bbb;
}

.footer-logo {
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
}

.footer-links {
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #bbb;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-social .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1c1c1c;
    color: #ccc;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social .social-icon:hover {
    background: #208315;
    color: #fff;
}

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */



#cookie-banner {
display: none;
position: fixed;
bottom: 25px;
left: 39px;
max-width: 502px;
margin: auto;
padding: 20px;
background-color: #ffffff;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
z-index: 9999;
}

#cookie-banner h4{
font-size: 18px;
font-weight: 700;
margin-bottom: 10px;
}
	
#cookie-banner p {
margin: 0 0 12px;
line-height: 1.5;
}
#cookie-banner .cookie-buttons {
display: flex;
gap: 10px;
justify-content: flex-end;
}
#cookie-banner button{
padding: 8px 14px;
font-size: 14px;
border: none;
border-radius: 6px;
cursor: pointer;
transition: background-color 0.2s ease-in-out;
font-family: sans-serif;	
}
#cookie-banner .btn-primary{
background-color: #208315;
color: #ffff;
}	
#cookie-banner .btn-primary:hover {
background-color: #ffff;
color:#1c2b39;
border: 1px solid #208315;
}
#cookie-banner .btn-secondary{
background-color:#ffff;
color:#1c2b39;
border: 1px solid #208315;	
}
#cookie-banner .btn-secondary:hover {
background-color: #208315;
color:#ffff;
}


/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Tablets and Below (max-width: 1199px) */
@media screen and (max-width: 1199px) {
    .brand-highlights__image {
        padding-right: 0;
    }
    
    .how-to-save__image {
        padding-left: 0;
    }
}

/* Tablets (max-width: 991px) */
@media screen and (max-width: 991px) {
    .hero{
        min-height: 0;
    }
    .features-section__card {
        flex: 1 1 300px;
    }
    
    .why-section__graphic-container {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .faq__header {
        position: static;
        top: auto;
    }
    
    .countries__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Landscape (max-width: 768px) */
@media (max-width: 768px) {
    .hero__title {
        font-size: 3.5rem;
    }
    
    .why-section__row {
        flex-direction: column;
    }
    
    .why-section__content {
        max-width: 100%;
        margin-bottom: 2rem;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    .how-to-use-promo {
        padding: 3rem 0;
    }
    
    .how-to-use-promo__header {
        margin-bottom: 2.5rem;
    }
    
    .how-to-use-promo__title {
        font-size: 2rem;
    }
    
    .how-to-use-promo__description {
        font-size: 1.125rem;
    }
    
    .how-to-use-promo__step {
        padding: 1rem 2rem 2rem;
    }
    
    .how-to-use-promo__step-headline {
        font-size: 1.25rem;
    }
    
    .faq {
        padding: 3rem 0;
    }
    
    .faq__title {
        font-size: 2rem;
    }
    
    .faq__question {
        font-size: 1.125rem;
    }
}

/* Small Mobile (max-width: 576px) */
@media (max-width: 576px) {
    .hero__image {
        margin-top: 2rem;
    }
    
    .hero__title {
        font-size: 2.7rem;
    }
    
    .hero__description {
        font-size: 1.125rem;
    }
    
    .brand-highlights {
        padding-top: 2rem;
    }
    
    .brand-highlights__container,
    .how-to-save {
        
    }
    
    .why-section {
        padding: 1.5rem 0;
    }
    
    .countries {
        padding: 3rem 0;
    }
    
    .countries__list {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-left: 0;
    }
}