.blog-content figcaption,
.blog-section h2,
.btn,
.cert-badge,
.countries__title,
.country-card__view-all,
.faq__contact-cta,
.how-to-save__image,
.how-to-use-promo__step {
    text-align: center
}

@font-face {
    font-family: bootstrap-icons;
    src: url("/assets/fonts/bootstrap-icons.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@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-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-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
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: Urbanist, sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    color: #333
}

img {
    display: block
}

a {
    text-decoration: none
}

ul {
    list-style: none
}

.navbar .navbar-brand img,
img {
    height: auto;
    max-width: 100%
}

.btn,
.hover-shadow,
.sidebar-toggle span,
a {
    transition: .3s
}

.btn {
    display: inline-block;
    padding: .75rem 1.5rem;
    font-weight: 600;
    border-radius: 0;
    border: 1px solid #044600;
    cursor: pointer;
    font-size: 1rem
}

.btn-primary {
    background-color: #044600;
    color: #fff
}

.btn-primary:hover {
    background-color: #fff;
    color: #1c2b39;
    border-color: #044600
}

.btn-secondary {
    background-color: transparent;
    color: #044600;
    border: 1px solid #044600
}

.btn-secondary:hover {
    background-color: #044600;
    color: #fff;
    border-color: #044600
}

.navbar {
    background-color: #044600;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

.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: .5rem
}

.navbar .navbar-nav {
    gap: 1.25rem
}

.navbar .nav-link {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 500;
    transition: color .2s
}

.navbar .nav-link:hover {
    color: #d9eef2
}

.sidebar-toggle {
    border: none;
    background: 0 0;
    padding: .5rem;
    width: 32px;
    height: 28px;
    position: relative;
    z-index: 1002;
    display: none;
    cursor: pointer
}

.sidebar-toggle:focus {
    outline: 0;
    box-shadow: none
}

.sidebar-toggle:focus-visible {
    outline: 0;
    box-shadow: none
}

.sidebar-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    left: 0
}

.sidebar-toggle span:first-child {
    top: 4px
}

.sidebar-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%)
}

.sidebar-toggle span:nth-child(3) {
    bottom: 4px
}

.sidebar-toggle.open span:first-child {
    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 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 1000;
    opacity: 0;
    transition: opacity .3s
}

.sidebar-overlay.active {
    display: block;
    opacity: 1
}

.country-dropdown {
    position: relative;
    display: inline-block
}

.country-dropdown button.country-dropdown-toggle,
button.country-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px !important;
    padding: .75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: Urbanist, sans-serif;
    border-radius: 0;
    border: 1px solid #044600;
    background: #fff;
    color: #044600;
    cursor: pointer;
    transition: .3s;
    white-space: nowrap
}

.country-icon {
    flex-shrink: 0
}

.country-dropdown button.country-dropdown-toggle:hover,
button.country-dropdown-toggle:hover {
    background: #044600;
    color: #fff;
    border-color: #044600
}

.country-dropdown-toggle::after {
    content: '▼';
    font-size: 10px;
    margin-left: 4px;
    transition: transform .3s
}

.country-dropdown.active .country-dropdown-toggle::after {
    transform: rotate(180deg)
}

.country-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(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: .3s slideDown
}

@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;
    color: #333;
    transition: background .2s;
    border-bottom: 1px solid #f0f0f0
}

.country-dropdown-item:last-child,
.list-group-item:last-child {
    border-bottom: none
}

.country-dropdown-item:hover {
    background: #f8f9fa;
    color: #044600
}

.country-flag {
    width: 26px;
    height: 26px;
    border-radius: 3px;
    object-fit: cover;
    flex-shrink: 0
}

.country-name {
    font-size: 14px;
    font-weight: 500
}

#headerCountryDropdown .country-dropdown-toggle,
.footer-social .social-icon:hover {
    background: #044600;
    color: #fff
}

.hero {
    display: flex;
    align-items: center;
    padding: 3rem 0;
    min-height: 80vh;
    background: url(/uploads/hero-gradient-bg.webp) center/cover #fff;
    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
}

.faq__header,
.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 {
    padding: 4rem 0 3rem
}

.brand-highlights__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem
}

.brand-highlights__content,
.brand-highlights__image,
.how-to-save__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,
.how-to-save__description {
    font-size: 1rem;
    color: #555;
    line-height: 1.8
}

.how-to-save {
    padding-bottom: 4rem
}

.how-to-save__container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center
}

.how-to-save__title {
    font-size: 1.75rem;
    font-weight: 600;
    max-width: 500px;
    margin-bottom: 1rem
}

.how-to-save__image {
    flex: 1 1 300px;
    padding-left: 3rem
}

.features-section,
.mission,
.why-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, .1);
    transition: transform .3s, box-shadow .3s
}

.features-section__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(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: .9375rem;
    color: #454545;
    line-height: 1.7
}

.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;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

.how-to-use-promo__step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: #044600;
    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__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-with-stores {
    padding: 60px 0;
    background: #f8f9fa
}

.countries__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 24px
}

.country-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
    min-height: 340px
}

.country-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .12)
}

.country-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e9ecef
}

.country-card__flag {
    object-fit: cover;
    flex-shrink: 0
}

.country-card__name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0
}

.country-card__header:hover .country-card__name {
    color: #007bff
}

.country-card__stores {
    flex: 1;
    margin-bottom: 16px
}

.country-card__stores-label {
    font-size: .875rem;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.country-stores-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.country-store-item {
    border-bottom: 1px solid #f1f3f5;
    padding-bottom: 10px
}

.country-store-item:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.country-store-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #495057;
    font-size: .95rem;
    transition: .2s;
    padding: 6px;
    border-radius: 6px
}

.country-store-link:hover {
    color: #007bff;
    background: #f8f9fa;
    transform: translateX(4px)
}

.country-store-logo {
    width: 100px;
    height: 57px;
    object-fit: contain;
    border-radius: 4px;
    flex-shrink: 0;
    background: #fff;
    padding: 2px;
    border: 1px solid #e9ecef
}

.country-store-name {
    font-weight: 500;
    line-height: 1.4
}

.country-card__view-all {
    display: inline-block;
    padding: 12px 20px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: .9rem;
    transition: .2s;
    margin-top: auto
}

#cookie-banner,
.faq,
.faq__answer,
.faq__question {
    background-color: #fff
}

.country-card__view-all:hover {
    background: #0056b3;
    color: #fff;
    transform: scale(1.02)
}

.faq {
    padding: 5rem 0;
    border-top: 1px solid #ccc
}

.faq__container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem
}

.faq__header {
    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 {
    overflow: hidden
}

.faq__question {
    font-size: 1.25rem;
    font-weight: 500;
    padding: 1.5rem 1rem;
    cursor: pointer;
    position: relative;
    margin: 0
}

.faq__question::marker {
    content: ""
}

.faq__question::after {
    content: "+";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #044600;
    font-weight: 300
}

.faq__item[open] .faq__question::after {
    content: "-"
}

.faq__answer {
    padding: 0 1rem 1rem;
    font-size: 1.125rem
}

.blog-section {
    padding: 5rem 0;
    background-color: #d9eef2
}

.blog-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0 0 2.5rem
}

.blog-faq h2 {
    font-size: 2rem
}

.blogs-listing .card .btn {
    margin-top: auto;
    max-width: fit-content
}

.blogs-listing .card .card-body {
    display: flex;
    flex-direction: column
}

.home-blog__card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    transition: transform .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
    height: 100%
}

.home-blog__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .12)
}

.card-img-top,
.home-blog__image {
    aspect-ratio: 4/2.5;
    object-fit: cover
}

.home-blog__content {
    flex-grow: 1;
    display: flex;
    flex-direction: column
}

.blog-nav-img,
.blog-single img {
    display: block;
    object-fit: cover
}

.home-blog__content .btn {
    margin-top: auto
}

.home-blog__content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: .5rem
}

.home-blog__content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666
}

.blog-section .blog-cta {
    margin-top: 2.5rem
}

.blog-content ul {
    list-style-type: disc
}

.blog-content ol {
    padding-left: 20px
}

.blog-nav-card {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    transition: .3s;
    height: 100%
}

.blog-nav-img-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    flex-shrink: 0
}

.blog-nav-img {
    width: 100%;
    height: 100%;
    object-position: center;
    transition: transform .4s
}

.blog-nav-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0, #e9ecef 100%)
}

.blog-nav-img-placeholder i {
    font-size: 3rem;
    color: #adb5bd
}

.blog-nav-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, .8);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px
}

.blog-nav-card .card-body {
    padding: 1rem 1.25rem;
    background: #fff;
    display: flex;
    align-items: center;
    min-height: 80px
}

.blog-nav-card .card-title {
    font-size: .95rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    width: 100%
}

.hover-shadow:hover {
    box-shadow: 0 .75rem 2rem rgba(0, 0, 0, .15) !important;
    transform: translateY(-5px);
    border-color: #044600
}

.hover-shadow:hover .blog-nav-img {
    transform: scale(1.08)
}

.hover-shadow:hover .blog-nav-badge {
    background: rgba(13, 110, 253, .95)
}

@media (max-width:991px) {
    .sidebar-toggle {
        display: block
    }

    .navbar .navbar-brand {
        max-width: 120px;
        margin-right: 0
    }

    .navbar-nav {
        display: none
    }

    .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 .3s;
        box-shadow: 2px 0 10px rgba(0, 0, 0, .3)
    }

    .sidebar-menu.show {
        left: 0
    }

    .sidebar-menu .navbar-nav {
        display: flex
    }

    .sidebar-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 32px;
        height: 32px;
        background: 0 0;
        border: none;
        cursor: pointer;
        z-index: 1002;
        padding: 0
    }

    .sidebar-close:focus {
        outline: 0;
        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)
    }

    .navbar-nav {
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0
    }

    .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, .1)
    }

    .navbar-nav .nav-link {
        padding: 1.125rem 1.5rem;
        color: #e0e0e0;
        font-size: 1rem;
        display: block;
        transition: .2s;
        border-left: 4px solid transparent
    }

    .navbar-nav .nav-link:hover {
        background: #2a2a2a;
        color: #fff;
        border-left-color: #044600;
        padding-left: 1.75rem
    }

    .navbar-nav .nav-link.active {
        background: #2a2a2a;
        color: #fff;
        border-left-color: #044600;
        font-weight: 600
    }

    #heroCountryDropdown .country-dropdown-menu {
        background: #fff;
        color: #e0e0e0
    }

    #headerCountryDropdown .country-dropdown-toggle {
        background: #1a1a1a;
        color: #e0e0e0;
        border-color: #1a1a1a;
        padding: 1.825rem 1.5rem
    }

    #headerCountryDropdown .country-dropdown-menu {
        background: #1a1a1a;
        border-color: #1a1a1a
    }

    #headerCountryDropdown .country-dropdown-item {
        color: #e0e0e0;
        border-bottom: none
    }

    #headerCountryDropdown .country-dropdown-item:hover {
        background: #f8f9fa;
        color: #333
    }

    .blog-nav-img-wrapper {
        height: 200px
    }
}

@media (max-width:767px) {
    .blog-nav-img-wrapper {
        height: 180px
    }

    .blog-nav-card .card-body {
        min-height: 70px;
        padding: .875rem 1rem
    }

    .blog-nav-card .card-title {
        font-size: .875rem
    }

    .blog-nav-badge {
        top: 10px;
        left: 10px;
        padding: 5px 12px;
        font-size: .75rem
    }

    .faq,
    .how-to-use-promo {
        padding: 3rem 0
    }

    .how-to-use-promo__header {
        margin-bottom: 2.5rem
    }

    .faq__title,
    .how-to-use-promo__title {
        font-size: 2rem
    }

    .faq__question,
    .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
    }
}

@media (max-width:575px) {
    .blog-nav-img-wrapper {
        height: 160px
    }

    .blog-nav-card .card-body {
        min-height: 65px
    }
}

.category-tabs .nav-item {
    background: #044600
}

.category-tabs .nav-item a,
.footer-links a:hover {
    color: #fff
}

.country-blogs-section {
    background-color: #d9eef2
}

.about-hero,
.inner-hero {
    min-height: 40vh;
    background: #f5f5f5
}

.hover-lift {
    transition: transform .3s, box-shadow .3s
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15) !important
}

.country-blog-card .badge {
    font-size: .75rem;
    padding: .5rem .75rem
}

.about-hero {
    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,
.cookie-policy p,
.cookie-policy ul,
.privacy-policy p,
.privacy-policy ul,
.terms p,
.terms ul {
    color: #555;
    line-height: 1.7
}

.mission__subtitle,
.mission__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem
}

.mission__subtitle {
    font-size: 1.5rem
}

.mission__highlight {
    color: #044600
}

.mission__paragraph {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #555;
    line-height: 1.7
}

.mission__cta {
    margin-top: 2rem
}

.blog-single h1 {
    font-size: 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 .text-center img {
    height: auto;
    margin: 0 auto;
    max-width: 75%
}

.blog-content p img {
    max-width: 75%;
    border-radius: 8px;
    margin: 1.5rem auto
}

.blog-content .image img {
    border-radius: 8px;
    margin: 1% auto;
    max-width: 75%
}

.blog-content figcaption {
    font-size: 16px;
    line-height: 20px;
    padding-top: 5px
}

.blog-single__content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 1.5rem 0
}

.cookie-policy h2,
.privacy-policy h2,
.terms h2 {
    color: #222;
    border-left: 4px solid #044600;
    padding-left: .6rem;
    margin: 2rem 0 1rem
}

.cookie-policy ul,
.privacy-policy ul,
.terms ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem
}

.contact-page .card {
    border-radius: 12px
}

.sticky-sidebar-wrapper {
    position: sticky;
    top: 95px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    overflow-x: hidden
}

.sticky-sidebar-wrapper::-webkit-scrollbar {
    width: 6px
}

.sticky-sidebar-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px
}

.sticky-sidebar-wrapper::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px
}

.sticky-sidebar-wrapper::-webkit-scrollbar-thumb:hover {
    background: #555
}

.sidebar .card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden
}

.section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333
}

.country-heading {
    font-size: .95rem;
    font-weight: 600;
    color: #555
}

.list-group-item {
    padding: .75rem 1rem;
    border: none;
    border-bottom: 1px solid #f0f0f0
}

@media (max-width:991px) {
    .sticky-sidebar-wrapper {
        position: static;
        max-height: none;
        overflow-y: visible
    }
}

.footer {
    background: #0f0f0f;
    padding: 3rem 0 1rem;
    color: #bbb
}

.footer-logo {
    font-weight: 700;
    letter-spacing: .5px;
    color: #fff
}

.footer-links {
    padding: 0
}

.footer-links li {
    margin-bottom: .5rem
}

.footer-links a {
    color: #bbb;
    transition: color .2s
}

.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: .3s
}

#cookie-banner {
    display: none;
    position: fixed;
    bottom: 25px;
    left: 39px;
    max-width: 502px;
    margin: auto;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(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 .2s ease-in-out;
    font-family: sans-serif
}

#cookie-banner .btn-primary,
#cookie-banner .btn-secondary:hover {
    background-color: #044600;
    color: #ffff
}

#cookie-banner .btn-primary:hover,
#cookie-banner .btn-secondary {
    background-color: #ffff;
    color: #1c2b39;
    border: 1px solid #044600
}

@media screen and (max-width:1199px) {
    .brand-highlights__image {
        padding-right: 0
    }

    .how-to-save__image {
        padding-left: 0
    }
}

@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)
    }
}

@media (max-width:768px) {
    .countries-grid {
        grid-template-columns: 1fr
    }

    .countries__title {
        font-size: 1.5rem
    }

    .country-card {
        padding: 20px;
        min-height: auto
    }

    .hero__title {
        font-size: 3.5rem
    }

    .why-section__row {
        flex-direction: column
    }

    .why-section__content {
        max-width: 100%;
        margin-bottom: 2rem
    }

    .faq__container {
        gap: 2rem
    }
}

@media (max-width:576px) {
    .navbar {
        padding: .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-toggle {
        padding: .65rem 1.2rem;
        font-size: .9rem
    }

    .country-dropdown-menu {
        min-width: 180px;
        max-height: 260px
    }

    .hero__image {
        margin-top: 2rem
    }

    .hero__title {
        font-size: 2.6rem
    }

    .hero__description {
        font-size: 1.125rem
    }

    .brand-highlights {
        padding-top: 2rem
    }

    .why-section {
        padding: 1.5rem 0
    }

    .countries {
        padding: 3rem 0
    }

    .countries__list {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-left: 0
    }

    .blog-content .table {
        overflow-x: auto
    }
}

.faq__answer,
.faq__contact-cta .btn {
    margin-top: 1rem
}

@media (min-width:600px) {
    .navbar.scrolling-navbar {
        padding-top: 20px;
        padding-bottom: 20px;
        transition: background .5s ease-in-out, padding .5s ease-in-out
    }

    .navbar.scrolling-navbar.top-nav-collapse {
        padding-top: 5px;
        padding-bottom: 5px
    }
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 600
}

.trust-icon {
    color: #044600;
    flex-shrink: 0
}

.faq__item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 1.25rem;
    transition: .3s
}

.faq__item:hover {
    border-color: #044600;
    box-shadow: 0 4px 12px rgba(16, 185, 129, .1)
}

.faq__question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    margin: 0
}

.faq__answer {
    line-height: 1.7;
    color: #374151
}

.faq__answer strong {
    color: #044600;
    font-weight: 600
}

.faq__answer ol,
.faq__answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem
}

.faq__answer li {
    margin: .5rem 0
}

.faq__trust-footer {
    padding: 2rem;
    background: linear-gradient(135deg, #1f2937 0, #111827 100%);
    border-radius: 12px;
    color: #fff
}

.trust-statement h3 {
    color: #10b981;
    margin-bottom: 1rem
}

.trust-certifications {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem
}

.cert-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem
}

.cert-badge span {
    font-size: .9rem;
    color: #d1d5db
}

.faq__contact-cta {
    margin-top: 2rem;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 12px
}

.faq__contact-cta h3 {
    color: #111827;
    margin-bottom: .5rem
}

.faq__trust-badges {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
      margin: 2rem 0;
      padding: 1.5rem;
      border-radius: 12px;
      border: 2px solid #044600;
   }