@font-face {
  font-family: 'Manroperegular'; 
  src: url('../fonts/manroperegular.woff2') format('woff2');
}

@font-face {
  font-family: 'Manropemedium'; 
  src: url('../fonts/manropemedium.woff2') format('woff2'); 
}

body {
    font-family: 'Manroperegular', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #ffffff;
}

/*html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}*/

/* --- Global Utilities & Animations --- */
.reveal-text {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-text.visible,
.help-section.animate-borders .reveal-text {
    opacity: 1;
    transform: translateY(0);
}

.delay-1, .reveal-delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.5s; }

/* --- Animation Text Structure --- */
.txt-anim-container {
    display: block;
    height: 100%;
    overflow: hidden;
}

.txt-anim-wrapper {
    display: block;
    height: 200%;
    transition: transform 0.5s cubic-bezier(0.6, 0, 0.2, 1);
}

.txt-anim-word {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50%;
    white-space: nowrap;
}

/* --- Header Layout --- */
.site-header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}

.header-container {
    padding: 30px 60px;
    background: transparent;
}

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

/* --- Header & Hero Buttons --- */
.header-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    padding: 0 28px;
    border-radius: 30px;
    font-family: 'Manropemedium', sans-serif;
    font-size: clamp(12px, 0.8vw, 14px);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(252, 80, 0, 0.03);
    box-shadow: 0px 0px 20px 0px rgba(252, 80, 0, 0.05) inset, 0px 1px 3px 0px rgba(252, 80, 0, 0.05) inset;
    color: rgba(252, 80, 0, 1);
    border: 1px solid rgba(252, 80, 0, 0.2);
    height: 44px;
    overflow: hidden;
    transition: background 0.3s ease;
}

.header-btn:hover {
    background: rgba(252, 80, 0, 0.1);
    box-shadow: 0px 0px 25px 0px rgba(252, 80, 0, 0.15) inset;
}

.header-btn .btn-text {
    display: block;
    height: 100%;
}

.header-btn:hover .txt-anim-wrapper {
    transform: translateY(-50%);
}

.header-btn .btn-icon {
    display: flex;
    align-items: center;
}

/* --- Menu Toggle --- */
.menu-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
    z-index: 100;
    border-radius: 50%;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /* Hero Image */
    background-image: url('../../assets/img/hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Updated Overlay Color to 0.9 as requested */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 0;
}

.hero-content-wrapper {
    flex-grow: 1;
}

.hero-heading {
    font-family: 'Manropemedium', sans-serif;
    font-weight: 500;
    font-size: clamp(42px, 5vw, 80px);
    line-height: 140%;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    text-align: center;
    
    background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), 
                linear-gradient(0deg, #E4E4E4 0%, rgba(228, 228, 228, 0) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    font-family: 'Manroperegular', sans-serif;
    font-size: clamp(16px, 1.2vw, 20px);
    line-height: 1.6;
    color: #FFFFFF;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* --- Reveal Animations --- */
.hero-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.strategy-section {
    background-color: #000000;
    color: #FFFFFF;
    width: 100%;
    height: 400vh;
    position: relative;
}

.strategy-sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.strategy-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    width: 100%;
}

.strategy-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.strategy-item p {
    font-family: 'Manropemedium', sans-serif;
    font-size: clamp(16px, 1.8vw, 32px);
    line-height: 1.4;
    margin: 0;
}

.final-statement {
    font-size: clamp(22px, 3vw, 40px) !important;
    background: linear-gradient(90deg, #FFFFFF 0%, #AAAAAA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.help-section {
    background-color: #000000;
    color: #FFFFFF;
    position: relative;
    padding: 80px 0;
    margin: 50px 0;
    width: 100%;
    overflow: hidden;
}

.help-border-top,
.help-border-bottom {
    position: absolute;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.help-border-top { top: 0; }
.help-border-bottom { bottom: 0; }

.help-section.animate-borders .help-border-top,
.help-section.animate-borders .help-border-bottom {
    width: 100%;
}

.help-container {
    width: 100%;
    padding: 0 60px;
    margin: 0 auto;
}

.help-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.help-left-content {
    width: 30%;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically centered */
}

.help-main-title {
    font-family: 'Manropemedium', sans-serif;
    font-size: clamp(28px, 3.5vw, 48px);
    line-height: 1.2;
    margin-bottom: 40px;
    color: #FFFFFF;
    width: 100%;
}

.help-btn-wrapper {
    width: fit-content;
}

.help-right-grid {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    row-gap: 60px;
}

.help-grid-item {
    width: 33.333%;
    border-left: 1px solid #FFFFFF;
    padding: 0 30px 0px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically centered content */
    min-height: 120px; /* Reduced min-height */
    height: auto;
}

.help-grid-item p {
    font-family: 'Manroperegular', sans-serif;
    font-size: clamp(16px, 1.2vw, 20px);
    line-height: 1.5;
    color: #DDDDDD;
    margin: 0;
}

/* Only section-specific styles. No duplicates. */
.impact-section {
    background-color: #000000;
    color: #FFFFFF;
    padding: 0 0 120px 0; /* No top padding as requested */
    width: 100%;
}

/* Using 'help-container' from global CSS for width/padding, so no .impact-container definition here */
.impact-header {
    text-align: center;
    margin-bottom: 80px;
    padding-top: 40px; 
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.impact-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.impact-title {
    font-family: 'Manropemedium', sans-serif;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(90deg, #FFFFFF 0%, #CCCCCC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.impact-subtitle {
    font-family: 'Manroperegular', sans-serif;
    font-size: clamp(16px, 1.2vw, 20px);
    color: #DDDDDD;
    opacity: 0.9;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.impact-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    cursor: pointer;
}

.impact-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.impact-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 4px;
}

.impact-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.impact-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: flex-end;
}

.impact-hover-desc {
    font-family: 'Manroperegular', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #FFFFFF;
    margin: 0;
}

.impact-card:hover .impact-img {
    transform: scale(1.05);
}

.impact-card:hover .impact-overlay {
    transform: translateY(0);
}

.impact-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #FFFFFF;
}

.impact-card-title {
    font-family: 'Manropemedium', sans-serif;
    font-size: 20px;
    color: #FFFFFF;
    margin: 0;
    transition: color 0.3s ease;
}

/* Title turns orange on hover */
.impact-card:hover .impact-card-title {
    color: rgba(252, 80, 0, 1);
}

/* Unique button for this section (Round Icon Button) */
.impact-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(252, 80, 0, 0.03);
    border: 1px solid rgba(252, 80, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.impact-btn svg {
    transition: transform 0.3s ease;
}

.impact-card:hover .impact-btn {
    background: rgba(252, 80, 0, 0.1);
    box-shadow: 0px 0px 15px 0px rgba(252, 80, 0, 0.15) inset;
}

.impact-card:hover .impact-btn svg {
    transform: rotate(-45deg);
}

.story-section {
    background-color: #000000;
    color: #FFFFFF;
    margin: 0; /* No external margins */
    width: 100%;
}

.story-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 80px;
}

.story-img-col {
    width: 50%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.story-img-col.visible {
    opacity: 1;
    transform: translateY(0);
}

.story-img-wrapper {
    width: 100%;
    aspect-ratio: 1/1.1;
    overflow: hidden;
    border-radius: 4px;
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content-col {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Align content to start (left) */
}

.story-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Manropemedium', sans-serif;
    font-size: 14px;
    color: #FC5000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Arrow styling */
.story-arrow {
    width: 14px;
    height: 14px;
}

.story-title {
    font-family: 'Manropemedium', sans-serif;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.1;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.story-desc {
    margin-bottom: 50px;
}

.story-desc p {
    font-family: 'Manroperegular', sans-serif;
    font-size: clamp(16px, 1.2vw, 20px);
    line-height: 1.6;
    color: #DDDDDD;
    margin-bottom: 5px;
}

/* Button Wrapper - auto width */
.story-btn-wrapper {
    width: fit-content; 
}

/* Big Button Styling */
.story-btn-big, .header-btn.story-btn-big{
    font-size: 24px;
    padding: 0 40px;
    height: 64px;
    width: auto; /* Not full width */
    display: inline-flex; /* Ensure flex behavior inline */
}

.story-btn-big .btn-icon svg {
    width: 24px;
    height: 24px;
}

/* Superscript number styling */
.btn-sup {
    font-size: 12px;
    vertical-align: top; /* Move to top */
    position: relative;
    top: -5px; /* Slight adjustment */
    margin-left: 4px;
}

.footer-section {
    background-color: #000000;
    color: #FFFFFF;
    padding: 100px 0 30px 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Big Gradient Text */
.footer-big-text-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.footer-big-text {
    font-family: 'Manropemedium', sans-serif;
    font-size: clamp(60px, 15vw, 200px);
    line-height: 0.9;
    margin: 0;
    letter-spacing: -0.04em;
    text-align: center;
    
    /* Provided Gradient Mask */
    background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
                linear-gradient(0deg, rgba(228, 228, 228, 0) 20.72%, rgba(228, 228, 228, 0.5) 50.45%, #E4E4E4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    
    /* Fallback color */
    color: rgba(228, 228, 228, 1); 
}

/* CTA Row */
.footer-cta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-cta-title {
    font-family: 'Manropemedium', sans-serif;
    font-size: clamp(20px, 2.5vw, 32px);
    color: #FFFFFF;
    margin: 0;
    max-width: 600px;
}

/* Footer Button Specifics (Large on Desktop) */
.footer-btn-wrapper .header-btn {
    height: 64px;
    padding: 0 40px;
}

.footer-btn-wrapper .header-btn .btn-icon svg {
    width: 24px;
    height: 24px;
}

/* Main Divider Line */
.footer-divider {
    width: 0;
    height: 0;
    border-top: 1px solid #FFFFFF;
    background: transparent;
    margin-bottom: 60px;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-section.visible .footer-divider {
    width: 100%;
}

/* Links Row */
.footer-links-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col-center {
    flex-direction: row;
    gap: 250px;
}

.footer-nav-group {
    display: flex;
    flex-direction: column;
    /* Increased gap for vertical spacing between menu items */
    gap: 24px; 
}

/* Link Styles */
.footer-link-text,
.footer-nav-link,
.footer-social-link {
    font-family: 'Manroperegular', sans-serif;
    /* Increased font size */
    font-size: 22px; 
    color: #FFFFFF;
    text-decoration: none;
    position: relative;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.3s ease;
}

/* Hover Theme Color */
.footer-link-text:hover,
.footer-nav-link:hover,
.footer-social-link:hover {
    color: #FC5000;
}

/* Underline Animation */
.footer-nav-link::after,
.footer-social-link::after,
.footer-link-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #FC5000;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-nav-link:hover::after,
.footer-social-link:hover::after,
.footer-link-text:hover::after {
    transform: scaleX(1);
}

/* Copyright Section */
.footer-copyright-divider {
    width: 0;
    height: 0;
    border-top: 1px solid #FFFFFF;
    background: transparent;
    margin-bottom: 30px;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0.2s;
}

.footer-section.visible .footer-copyright-divider {
    width: 100%;
}

.footer-copyright p {
    font-family: 'Manroperegular', sans-serif;
    /* Increased font size */
    font-size: 18px; 
    color: #FFFFFF;
    margin: 0;
    opacity: 1;
}

/* Email Icon */
.footer-email-icon {
    width: 24px;
    height: 24px;
    fill: none; /* Changed to none to show outlines properly */
}


/* --- Combined Media Queries --- */

@media (min-width: 1200px) {
    .navbar-wrapper {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(75, 75, 75, 1);
        box-shadow: 0px 0px 20px 0px rgba(255, 255, 255, 0.05) inset, 0px 1px 3px 0px rgba(255, 255, 255, 0.05) inset;
        backdrop-filter: blur(10px);
        border-radius: 50px;
        padding: 5px 6px;
    }

    .nav-links {
        gap: 5px;
    }

    .nav-links a {
        text-decoration: none;
        color: #FFFFFF;
        font-family: 'Manropemedium', sans-serif;
        font-size: clamp(12px, 0.8vw, 14px);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 10px 22px;
        border-radius: 30px;
        transition: background-color 0.3s ease;
        display: block;
        height: 40px;
        overflow: hidden;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .nav-links a.active {
        background-color: rgba(252, 80, 0, 1);
        color: #000000;
        font-weight: bold;
    }

    .nav-links a.active .txt-anim-word {
        color: #000000;
    }

    .nav-links a:hover .txt-anim-wrapper {
        transform: translateY(-50%);
    }
}

@media (max-width: 1199.98px) {
    .navbar-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        background: rgba(15, 15, 15, 0.95);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        padding: 0 20px;
        z-index: 90;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        /* Adjusted transition to include visibility delay for closing animation */
        transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.4s ease, visibility 0s 0.6s;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .navbar-wrapper.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        /* No delay for visibility when opening */
        transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.4s ease, visibility 0s 0s;
    }

    .nav-links {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: inline-block;
        text-decoration: none;
        font-family: 'Manropemedium', sans-serif;
        font-size: clamp(32px, 8vw, 48px);
        color: #FFFFFF;
        text-transform: uppercase;
        background: transparent;
        transition: color 0.3s ease;
    }

    .nav-links a:hover, .nav-links a.active {
        color: rgba(252, 80, 0, 1);
    }

    .txt-anim-word:nth-child(2) {
        display: none !important;
    }

    .txt-anim-wrapper {
        transform: none !important;
    }
}

@media (max-width: 1024px) {
    /* Help Section */
    .help-wrapper {
        flex-direction: column;
    }
    
    .help-left-content {
        width: 100%;
        margin-bottom: 60px;
        padding-right: 0;
    }
    
    .help-right-grid {
        width: 100%;
    }
    
    .help-grid-item {
        width: 50%;
        min-height: 90px;
    }

    /* Impact Section */
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Story Section */
    .story-wrapper {
        flex-direction: column; /* Stack vertically */
        gap: 60px;
    }
    .story-img-col {
        width: 100%;
        max-width: 100%;
        order: 1; 
    }
    .story-content-col {
        width: 100%;
        text-align: left;
        order: 2;
    }

    /* Footer Section */
    .footer-col-center {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    /* Header */
    .header-container {
        padding: 20px 20px;
    }

    /* Strategy Section */
    .strategy-sticky-container > .container {
        padding-left: 20px;
        padding-right: 20px;
        max-width: 100%;
    }

    .strategy-item p {
        font-size: clamp(16px, 4vw, 22px);
        max-width: 100%;
    }

    .strategy-section {
        height: 350vh;
    }

    /* Help Section */
    .help-container {
        padding: 0 20px;
    }
    
    .help-section {
        padding: 70px 0;
        margin: 50px 0;
    }
    
    .help-right-grid {
        row-gap: 30px;
    }
    
    .help-grid-item {
        width: 100%;
        padding: 0 0 0px 25px;
        min-height: auto;
        border-left: 1px solid #FFFFFF;
        min-height: 80px;
    }

    /* Impact Section */
    .impact-section {
        padding: 20px 0 80px 0;
    }
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .impact-header{
        padding-top:0;
        margin-bottom:40px;
    }
    .strategy-bottom{
        padding-bottom: 20px !important;
    }

    /* Story Section */
    .story-wrapper {
        gap: 40px;
    }

    .story-content-col {
        margin-bottom: 20px;
    }

    /* Revert button size on mobile */
    .story-btn-big {
        font-size: 14px;
        padding: 0 28px;
        height: 44px;
    }

    .story-btn-big .btn-icon svg {
        width: 18px;
        height: 18px;
    }

    /* Footer Section */
    .footer-section {
        padding: 60px 0 40px 0;
    }

    /* Revert Button size on mobile */
    .footer-btn-wrapper .header-btn {
        height: 44px;
        padding: 0 28px;
        font-size: 12px;
    }

    .footer-btn-wrapper .header-btn .btn-icon svg {
        width: 18px;
        height: 18px;
    }

    .footer-cta-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links-row {
        flex-direction: column;
        gap: 50px;
        margin-bottom: 40px;
    }

    .footer-col-center {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        gap: 20px;
    }
    
    .footer-col-right {
        margin-top: 10px;
    }
    
    .footer-social-link {
        text-transform: uppercase;
        font-size: 18px;
    }
}