:root {
    --primary-blue: #0a3d62;
    --primary-green: #007634;
    --white: #fff;
    --dark-text: #222;
    --background-light: #f8f8f8;
    --header-height: 80px;
    --transition-speed: 0.3s;
    --dropdown-open-duration: 0.38s;
    --dropdown-close-delay: 0.8s
}

body {
    padding-top: var(--header-height)
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .05);
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    display: flex;
    align-items: center;
    transition: all var(--transition-speed) ease
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    gap: 2rem
}

.site-header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    line-height: 0
}

.logo img {
    height: 72px;
    width: auto;
    display: block;
    object-fit: contain;
    object-position: center
}

@media (max-width:768px) {
    .logo img {
        height: 64px
    }
}

.site-header .mobile-nav-toggle,
.site-header .search-toggle {
    -webkit-user-select: none;
    user-select: none
}

.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 35px;
    padding: 0;
    margin: 0
}

.nav-links li {
    position: relative
}

.nav-links a {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    font-size: .95rem;
    position: relative;
    padding: 10px 0;
    display: inline-block;
    transition: color var(--transition-speed) ease
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width var(--transition-speed) ease
}

.nav-links a:hover,
.nav-links>li.active>a {
    color: var(--primary-green)
}

.nav-links a:hover::after,
.nav-links>li.active>a::after {
    width: 100%
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: var(--white);
    list-style: none;
    min-width: 280px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
    border-radius: 8px;
    padding: 15px 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity var(--dropdown-open-duration) ease, transform var(--dropdown-open-duration) ease, visibility 0s linear var(--dropdown-close-delay);
    z-index: 10
}

@media (min-width:1025px) {
    .dropdown:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
        transition-delay: 0s
    }
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--dark-text);
    font-size: .9rem
}

.dropdown-menu a:hover {
    background-color: var(--background-light);
    color: var(--primary-green)
}

.dropdown-menu a::after {
    display: none
}

.dropdown-submenu {
    position: relative
}

.dropdown-submenu .dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.dropdown-submenu .dropdown-item i {
    font-size: .8em;
    margin-left: 10px
}

.dropdown-submenu .submenu {
    top: 0;
    right: 100%;
    left: auto;
    margin-right: -2px;
    margin-top: -5px;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(10px);
    transition: opacity var(--dropdown-open-duration) ease, transform var(--dropdown-open-duration) ease, visibility 0s linear var(--dropdown-close-delay);
    min-width: 280px
}

@media (min-width:1025px) {
    .dropdown-submenu:hover>.submenu {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        pointer-events: auto;
        transition-delay: 0s
    }

    /* 3rd+ level submenus: open to right to avoid viewport overflow */
    .dropdown-submenu .submenu .dropdown-submenu > .submenu,
    .dropdown-submenu .submenu .dropdown-submenu .submenu {
        right: auto;
        left: 100%;
        margin-right: 0;
        margin-left: -2px;
        transform: translateX(-10px);
    }

    .dropdown-submenu .submenu .dropdown-submenu:hover > .submenu,
    .dropdown-submenu .submenu .dropdown-submenu .submenu:hover {
        transform: translateX(0);
    }
}

@media (min-width:1025px) {
    .dropdown-submenu.dropdown-up .submenu {
        top: auto;
        bottom: -40px;
        margin-top: 0;
        margin-bottom: 0
    }
}

.mobile-back-btn {
    display: none
}

.mobile-nav-toggle {
    display: none;
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    z-index: 10002;
    border: none;
    background: 0 0;
    padding: 0;
    pointer-events: auto
}

.mobile-nav-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--dark-text);
    border-radius: 3px;
    transition: all .3s ease-in-out
}

.mobile-nav-toggle span:first-child {
    top: 0
}

.mobile-nav-toggle span:nth-child(2) {
    top: 9px
}

.mobile-nav-toggle span:nth-child(3) {
    top: 18px
}

.mobile-nav-toggle.active span:first-child {
    transform: translateY(9px) rotate(45deg);
    background: var(--white)
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px)
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background: var(--white)
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 10001;
    display: none;
    backdrop-filter: blur(4px);
    transition: opacity .3s ease
}

body.nav-open .nav-overlay {
    display: block !important
}

.main-nav {
    z-index: 10002
}

@media (max-width:1024px) {
    :root {
        --mobile-menu-top-space: 56px
    }

    .site-header {
        z-index: 7600 !important
    }

    .mobile-nav-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        z-index: 7700 !important;
        pointer-events: auto !important
    }

    .main-nav {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        height: 100vh;
        background: var(--white);
        z-index: 7700;
        transform: translateX(-105%);
        transition: transform .32s cubic-bezier(.4, 0, .2, 1);
        box-shadow: none;
        overflow-y: auto;
        padding-top: 0;
        overflow-x: hidden;
        pointer-events: none;
        isolation: isolate
    }

    .main-nav.active {
        transform: translateX(0);
        pointer-events: auto
    }

    .main-nav .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0;
        padding-top: var(--mobile-menu-top-space);
        padding-bottom: 16px
    }

    .main-nav .nav-links li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        opacity: 1;
        transform: none;
        transition: background-color .2s ease
    }

    .main-nav.active .nav-links li {
        opacity: 1;
        transform: none
    }

    .main-nav .nav-links li>a {
        display: block;
        padding: 15px 20px;
        transition: background-color .25s ease .1s, color .25s ease .1s
    }

    .main-nav .nav-links li {
        position: static
    }

    .dropdown-menu,
    .dropdown-submenu .submenu {
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        height: 100vh;
        max-height: 100vh;
        min-width: 0 !important;
        background: #fff;
        z-index: 999;
        transform: translateX(100%);
        transition: transform .3s cubic-bezier(.4, 0, .2, 1);
        box-shadow: none;
        padding: 0 0 16px;
        margin: 0 !important;
        border-radius: 0;
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
        visibility: visible;
        opacity: 1;
        pointer-events: none
    }

    .dropdown-menu.slide-active,
    .dropdown-submenu .submenu.slide-active {
        transform: translateX(0);
        z-index: 1000;
        pointer-events: auto !important
    }

    .mobile-back-btn {
        padding: 15px 20px;
        background: #f4f6f8;
        color: var(--primary-blue);
        font-weight: 700;
        text-transform: uppercase;
        font-size: .9rem;
        border-bottom: 1px solid #e1e4e8;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 10px;
        list-style: none;
        position: sticky;
        top: 0;
        z-index: 5
    }

    .mobile-back-btn i {
        font-size: 1rem;
        color: var(--primary-green)
    }

    .dropdown-menu li {
        border-bottom: 1px solid #f0f0f0
    }

    .dropdown-menu a {
        padding: 15px 20px;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        font-size: 1rem;
        gap: 15px;
        text-decoration: none;
        line-height: 1.3;
        transition: background-color .25s ease .1s, color .25s ease .1s
    }

    .dropdown-menu a i {
        transform: rotate(-90deg);
        font-size: .8rem;
        color: #999
    }

    .main-nav.active .nav-links a::after {
        display: none !important
    }

    .header-actions,
    .search-container,
    .search-toggle {
        display: none !important
    }
}

body.nav-open {
    overflow: hidden !important
}

@media (max-width:1024px) {
    .nav-overlay {
        top: 0 !important;
        z-index: 7600 !important;
        background: rgba(8, 12, 20, .5) !important;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        opacity: 0;
        pointer-events: none;
        transition: opacity .26s ease
    }

    body.nav-open .nav-overlay {
        display: block !important;
        opacity: 1;
        pointer-events: auto
    }

    .site-header .logo {
        transition: opacity .2s ease, visibility .2s ease, transform .2s ease
    }

    body.nav-open .site-header {
        background: 0 0 !important;
        border: none !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        height: 0 !important;
        min-height: 0 !important;
        overflow: visible !important;
        z-index: 7750 !important
    }

    body.nav-open .site-header .container {
        height: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    body.nav-open .site-header .header-actions,
    body.nav-open .site-header .logo {
        opacity: 0;
        visibility: hidden;
        pointer-events: none
    }

    body.nav-open .mobile-nav-toggle {
        position: fixed;
        top: 14px;
        right: 16px;
        z-index: 7760 !important;
        width: 34px;
        height: 34px;
        border-radius: 0;
        background: 0 0;
        box-shadow: none
    }

    .mobile-nav-toggle {
        width: 32px;
        height: 24px
    }

    .mobile-nav-toggle span {
        background: #18202b;
        height: 2px;
        border-radius: 2px
    }

    .mobile-nav-toggle.active span:first-child,
    .mobile-nav-toggle.active span:nth-child(3) {
        background: #18202b
    }

    .mobile-nav-toggle span:first-child {
        top: 2px
    }

    .mobile-nav-toggle span:nth-child(2) {
        top: 11px
    }

    .mobile-nav-toggle span:nth-child(3) {
        top: 20px
    }

    .main-nav .nav-links {
        min-height: 100%;
        background: linear-gradient(180deg, #fff 0, #fbfbfb 100%)
    }
}

.site-footer {
    background-color: var(--white);
    color: #333;
    padding: 80px 0 0 0;
    width: 100%;
    display: block;
    border-top: 1px solid #eaeaea;
    font-family: inherit;
    position: relative;
    z-index: 10
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    align-items: start
}

.footer-brand-col,
.footer-contact-col,
.footer-links-col {
    min-width: 0;
    word-break: break-word
}

.footer-brand-col .footer-logo {
    max-width: 180px;
    margin-bottom: 25px;
    opacity: 1
}

.brand-desc {
    line-height: 1.8;
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px
}

.site-footer h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    text-transform: capitalize
}

.site-footer h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-green);
    border-radius: 2px
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer-menu li {
    margin-bottom: 16px;
    display: flex;
    align-items: center
}

.footer-menu a {
    color: #555;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s ease;
    position: relative;
    display: flex;
    align-items: center
}

.footer-menu a::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--primary-green);
    border-radius: 50%;
    margin-right: 12px;
    opacity: 0;
    transform: scale(0);
    transition: all .3s ease
}

.footer-menu a:hover {
    color: var(--primary-blue);
    transform: translateX(5px)
}

.footer-menu a:hover::before {
    opacity: 1;
    transform: scale(1)
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6
}

.contact-list i {
    color: var(--primary-green);
    background: rgba(0, 118, 52, .08);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0
}

.contact-link {
    color: #555;
    font-weight: 500;
    text-decoration: none;
    transition: color .3s ease
}

.contact-link:hover {
    color: var(--primary-green)
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background-color: rgba(0, 51, 102, .05);
    color: var(--primary-blue);
    transition: all .3s ease;
    border: 1px solid transparent;
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 118, 52, .2)
}

.footer-bottom {
    margin-top: 60px;
    border-top: 1px solid #eaeaea;
    padding: 25px 0;
    background-color: #fafafa
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px
}

.copyright-text {
    color: #777;
    font-size: .95rem;
    margin: 0
}

.footer-legal-links {
    display: flex;
    gap: 20px
}

.footer-legal-links a {
    color: #777;
    text-decoration: none;
    font-size: .95rem;
    transition: color .3s ease
}

.footer-legal-links a:hover {
    color: var(--primary-blue)
}

.separator {
    color: #ddd
}

@media (max-width:1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px
    }
}

@media (max-width:768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .footer-bottom-flex {
        flex-direction: column;
        text-align: center
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: 2rem
}

.search-container {
    position: relative
}

.search-toggle {
    background: 0 0;
    border: none;
    color: var(--dark-text);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 8px;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px
}

.search-toggle:hover {
    color: var(--primary-green);
    background: rgba(0, 118, 52, .05);
    transform: translateY(-2px)
}

.search-bar {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, .94);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10vh 20px 40px;
    opacity: 0;
    visibility: hidden;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px)
}

.search-bar.active {
    opacity: 1;
    visibility: visible
}

.search-input-wrapper {
    position: relative;
    width: 100%;
    max-width: 850px;
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    padding: 5px 15px;
    border: 1px solid rgba(0, 0, 0, .05);
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s ease
}

.search-bar.active .search-input-wrapper {
    transform: scale(1.02)
}

.search-icon {
    margin-left: 15px;
    font-size: 1.4rem;
    color: var(--primary-green);
    opacity: .7
}

#siteSearch {
    width: 100%;
    padding: 22px 20px;
    font-size: 1.5rem;
    border: none;
    background: 0 0;
    outline: 0;
    font-family: inherit;
    color: var(--dark-text);
    font-weight: 500
}

#siteSearch::placeholder {
    color: #999;
    font-weight: 400
}

.search-close {
    width: 45px;
    height: 45px;
    background: #f4f6f8;
    color: #555;
    border: none;
    border-radius: 14px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px
}

.search-close:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: rotate(90deg)
}

.search-results {
    width: 100%;
    max-width: 850px;
    margin-top: 40px;
    max-height: 65vh;
    overflow-y: auto;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, .1) transparent
}

.search-results::-webkit-scrollbar {
    width: 6px
}

.search-results::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .05);
    border-radius: 10px
}

.search-suggestions-header {
    width: 100%;
    max-width: 850px;
    margin: 0 auto 20px;
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-blue);
    letter-spacing: 1.5px;
    opacity: .6;
    display: flex;
    align-items: center;
    gap: 10px
}

.search-suggestions-header::after {
    content: "";
    height: 1px;
    flex: 1;
    background: rgba(0, 0, 0, .05)
}

.search-suggestions-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 15px;
    width: 100%;
    max-width: 850px;
    margin: 0 auto 40px
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 18px 22px;
    background: var(--white);
    border-radius: 18px;
    margin-bottom: 15px;
    text-decoration: none;
    color: var(--dark-text);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .03);
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    border: 1px solid rgba(0, 0, 0, .04);
    animation: slideUpFade .4s ease forwards;
    opacity: 0;
    transform: translateY(10px)
}

.search-result-item:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    border-color: var(--primary-green);
    background: linear-gradient(to right, #fff, #f9fbfc)
}

.result-icon {
    width: 52px;
    height: 52px;
    background: rgba(0, 118, 52, .07);
    color: var(--primary-green);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.3rem;
    transition: all .3s ease
}

.search-result-item:hover .result-icon {
    background: var(--primary-green);
    color: var(--white);
    transform: rotate(-10deg)
}

.result-info {
    flex: 1
}

.result-title {
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--primary-blue);
    margin-bottom: 4px;
    display: block
}

.result-url {
    font-size: .8rem;
    color: #888;
    display: block;
    opacity: .8;
    font-weight: 400
}

.result-arrow {
    margin-left: auto;
    color: #ddd;
    font-size: .9rem;
    transition: all .3s ease;
    opacity: 0;
    transform: translateX(-10px)
}

.search-result-item:hover .result-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--primary-green)
}

.search-no-results {
    text-align: center;
    padding: 60px 40px;
    color: #777;
    font-size: 1.2rem;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    border: 1px solid rgba(0, 0, 0, .05)
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@media (max-width:768px) {
    .search-bar {
        padding-top: 12vh
    }

    .search-input-wrapper {
        border-radius: 18px;
        max-width: 100%
    }

    #siteSearch {
        font-size: 1.1rem;
        padding: 15px 12px
    }

    .search-icon {
        font-size: 1.1rem;
        margin-left: 10px
    }

    .search-close {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        font-size: .9rem
    }

    .search-suggestions-container {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .search-result-item {
        padding: 15px
    }

    .result-icon {
        width: 44px;
        height: 44px;
        margin-right: 15px;
        font-size: 1.1rem
    }

    .result-title {
        font-size: 1rem
    }
}

@media (max-width:480px) {
    .search-bar {
        padding: 10vh 15px 30px
    }

    #siteSearch {
        font-size: 1rem
    }

    .search-suggestions-header {
        font-size: .75rem
    }
}

.footer-newsletter-merged {
    background: #f9fbfc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 80px;
    box-shadow: 0 15px 35px rgba(0, 51, 102, .05);
    position: relative;
    overflow: hidden
}

.footer-newsletter-merged::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: var(--primary-green);
    opacity: .05;
    border-radius: 50%;
    pointer-events: none
}

.newsletter-content {
    flex: 1;
    max-width: 500px;
    position: relative;
    z-index: 2
}

.newsletter-content h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--primary-blue);
    font-weight: 700
}

.newsletter-content p {
    color: #666;
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.6
}

.footer-newsletter-merged .newsletter-form {
    display: flex;
    gap: 12px;
    flex: 1;
    max-width: 480px;
    margin: 0;
    position: relative;
    z-index: 2
}

.footer-newsletter-merged .newsletter-form input {
    flex: 1;
    padding: 18px 25px;
    border: 1px solid #d1d9e6;
    border-radius: 12px;
    background: var(--white);
    color: #333;
    font-size: 1rem;
    outline: 0;
    transition: all .3s ease;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, .02)
}

.footer-newsletter-merged .newsletter-form input:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(0, 118, 52, .1)
}

.footer-newsletter-merged .newsletter-form button {
    padding: 0 35px;
    border: none;
    border-radius: 12px;
    background: var(--primary-green);
    color: var(--white);
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap
}

.footer-newsletter-merged .newsletter-form button:hover {
    background: #008f3f;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 118, 52, .25)
}

@media (max-width:1024px) {
    .footer-newsletter-merged {
        flex-direction: column;
        text-align: center;
        padding: 40px
    }

    .newsletter-content {
        margin: 0 auto
    }
}

@media (max-width:480px) {
    .footer-newsletter-merged {
        padding: 30px 20px
    }

    .footer-newsletter-merged .newsletter-form {
        flex-direction: column;
        width: 100%
    }

    .footer-newsletter-merged .newsletter-form button {
        width: 100%;
        padding: 18px;
        justify-content: center
    }
}