/* ==========================================================================
   FONTS
   ========================================================================== */

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Regular.woff2") format("woff2"),
        url("../fonts/Poppins-Regular.ttf") format("truetype");
    /* fallback */
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Bold.woff2") format("woff2"),
        url("../fonts/Poppins-Bold.ttf") format("truetype");
    /* fallback */
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin: 0;
    background: #fff;
    color: white;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

:root {
  --container-min: 1200px;
  --container-max: 1600px;
}

a {
    color: #ffdb15;
}


/* Show skip link only when tabbed to */
.skip-link {
    position: absolute;
    left: 0.75rem;
    top: 0.75rem;
    transform: translateY(-200%);
    background: #ffdb15;
    color: #000;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    font: 600 0.95rem/1 'Poppins', sans-serif;
    text-decoration: none;
    z-index: 3000;
    /* higher than .sticky-header (1000) and overlay (2000) */
}

.skip-link:focus,
.skip-link:focus-visible {
    transform: translateY(0);
    outline: 3px solid #000;
}

#main-content {
    scroll-margin-top: 96px;
    /* works for in-page anchor jumps */
}

/* ==========================================================================
   HEADER STYLES
   ========================================================================== */

.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    padding: 2rem 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-height: 60px;
    box-sizing: border-box;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    height: 100%;
    min-height: 44px;
    /* Minimum touch target */
}

.header-logo {
    height: 30px;
    width: auto;
    margin: 0;
}

/* Mobile Navigation */
.header-buttons {
    display: flex;
    gap: clamp(0.2rem, 1vw, 0.5rem);
    flex: 1;
    justify-content: center;
    margin: 0 clamp(0.3rem, 2vw, 1rem);
}

.header-btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    background: linear-gradient(to bottom, #1f1f50, #3a3a6f);
    color: #ffdb15;
    border: none;
    padding: clamp(0.4rem, 1.5vw, 0.7rem) clamp(0.6rem, 2.5vw, 1.2rem);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: normal;
    flex: 1;
    text-align: center;
    word-break: break-word;
}

.header-btn:hover {
    background: rgba(62, 73, 137, 1);
    transform: translateY(-1px);
}

.header-btn:active {
    transform: translateY(0);
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    gap: 3px;
    cursor: pointer;
    flex-shrink: 0;
    padding: 8px;
    min-width: 32px;
    align-items: center;
    background: none;
    border: none;
}

.hamburger-menu span {
    width: 25px;
    height: 4px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu:hover span {
    background: #ffdb15;
}

/* Desktop Navigation - Hidden by default */
.desktop-nav {
    display: none;
}

.login-link {
    display: none;
}

.nav-btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 999px;
    color: black;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
    text-align: center;
    cursor: pointer;
}

.nav-btn:hover {
    background: #fff;
    transform: translateY(-1px);
}

.nav-btn.active {
    background: #ffdb15;
    color: black;
}

.nav-btn.cta {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    background: #ffdb15;
    font-weight: 700;
    color: black;
    padding: 1rem 2rem;
    border: 2px solid white;
}

/* ========================
   MOBILE OVERLAY MENU
   ======================== */

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(to bottom, #1f1f50, #3a3a6f);
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 3rem 1.5rem;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .35s ease, transform .35s ease;
    overflow-x: hidden;
    overscroll-behavior: contain;
}

.mobile-overlay.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.logo-wrapper::after {
    content: '';
    position: absolute;
    background: url('../images/birds3.webp') no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 11;
    top: -80px;
    right: -175px;
    width: 405px;
    height: 315px;
    opacity: 0.05;
}

.overlay-content {
    width: 100%;
    max-width: 80%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    margin-top: -1rem;
}

.overlay-login-wrapper {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: -2rem;
}

.overlay-logo {
    height: 40px;
    width: auto;
}

.close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    bottom: -5rem;
    right: 0rem;
    width: 56px;
    height: 56px;
}

.circle-arrow {
    background: #ffdb15;
    border: 3px solid white;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.circle-arrow .arrow {
    display: block;
    transform: rotate(90deg);
    /* showing left arrow to indicate close */
    width: 30px;
    height: 30px;
}

/* Navigation links as big pills */
.overlay-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.overlay-nav::before {
    content: '';
    position: fixed;
    background: url('../images/dots1.webp') no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 11;
    top: 185px;
    left: 0px;
    width: 400px;
    height: 430px;
    opacity: 0.1;
}

.overlay-nav::after {
    content: '';
    position: fixed;
    background: url('../images/dots1.webp') no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 11;
    top: 300px;
    right: 0px;
    width: 400px;
    height: 430px;
    opacity: 0.1;
    transform: scaleX(-1);
}

.overlay-link {
    background: white;
    color: black;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    padding: 1.4rem 2rem;
    border-radius: 38px;
    text-align: center;
    display: block;
    transition: transform .2s ease;
}

.overlay-link:hover {
    transform: translateY(-2px);
}

.overlay-link.active {
    background: #ffdb15;
    color: #1f1f50;
}

.overlay-link.interested {
    border: 3px solid white;
    background: #ffdb15;
}

/* Overlay Login */

.overlay-login {
    display: inline-block;
    width: auto;
    padding: 0;
    color: #ffdb15;
    text-decoration: underline;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    cursor: pointer;
}


/* ==========================================================================
   MAIN CONTENT SECTIONS
   ========================================================================== */

/* Hero Section */
.gradient-box {
    background: linear-gradient(to bottom, #1f1f50, #3a3a6f);
    padding: 9rem 1.5rem 8rem 1.5rem;
    position: relative;
    z-index: 1;
}

.gradient-box::before {
    content: '';
    position: absolute;
    background: url('../images/dots1.webp') no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: -1;
    top: 170px;
    left: 0px;
    width: 400px;
    height: 400px;
    opacity: 0.1;
}

.content {
    max-width: 500px;
    margin: 0 auto;
}

.coming-soon {
    color: #ffdb15;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

h1 {
    font-size: 2.4rem;
    line-height: 1.5;
    margin: 0 0 1rem;
}

.highlight {
    color: #ffdb15;
}

.desc {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.94rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    pointer-events: none;
}

.desc a {
    color: white;
    text-decoration: none;
}

.signup-button {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    background: #ffdb15;
    color: #000;
    border: 3px solid white;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.3rem;
    cursor: pointer;
    display: block;
    margin: 1rem auto 0;
    text-align: center;
    text-decoration: none;
    max-width: 85px;
}

.content-image {
    display: none;
    /* Hidden on mobile */
}

/* Silver Background Section */
.silverbar-wrapper {
    background: url('../images/silverbackground1.svg') no-repeat center center;
    background-size: cover;
    position: relative;
    min-height: 77rem;
    margin-top: -11.5rem;
    z-index: 10;
    pointer-events: none;
}

.silverbar-wrapper::before {
    content: '';
    position: absolute;
    background: url('../images/birds3.webp') no-repeat;
    background-size: auto;
    background-size: contain;
    pointer-events: none;
    z-index: -50;
    bottom: -10px;
    left: -121px;
    width: 400px;
    height: 550px;
    transform: scaleX(-1);
    opacity: 0.1;
}

.silverbar-wrapper::after {
    content: '';
    position: absolute;
    background: url('../images/dots1.webp') no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 11;
    top: 200px;
    right: 0px;
    width: 400px;
    height: 550px;
    transform: scaleX(-1);
    opacity: 0.15;
}

.silverbar {
    width: 100%;
    height: 77rem;
    display: block;
    position: relative;
    z-index: 10;
}

.silverbar-desktop {
    display: none;
    /* Hidden on mobile */
}

/* How It Works Section */
.how-it-works-section {
    position: relative;
    background: transparent;
    padding: 11rem 1.5rem 5rem;
    color: #000;
    z-index: 15;
    pointer-events: none;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.9rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 1rem 0;
    color: #000;
}

.step {
    text-align: center;
    margin-bottom: 1rem;
}

.step-icon {
    margin-bottom: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.step-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #000;
}

.step-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
    margin: 0;
    font-weight: 400;
}

/* Bottom Gradient Section */
.gradient-box-bottom {
    background: linear-gradient(to bottom, #1f1f50, #3a3a6f);
    padding: 6rem 1.5rem 8rem 1.5rem;
    position: relative;
    z-index: 2;
    margin-top: -5rem;
}

.gradient-box-bottom::before {
    content: '';
    position: absolute;
    background: url('../images/dots1.webp') no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: -1;
    bottom: -40px;
    left: -30px;
    width: 400px;
    height: 330px;
    opacity: 0.1;
}

.benefits-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.benefit-box {
    background: linear-gradient(to bottom, #C0C0C0, #B0B3C5, #D6D6E0);
    border-radius: 40px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.benefit-title {
    background: white;
    color: black;
    text-align: center;
    padding: 20px;
    border-radius: 100px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 30px;
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #1f1f50;
    line-height: 1.4;
}

.benefit-icon {
    width: 10px;
    height: 15px;
    background: black;
    border-radius: 4px;
    margin-right: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

.benefit-text strong {
    font-weight: bold;
    color: #1f1f50;
}

.why-flok-heading {
    font-size: 2.4rem;
}

.why-flok-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-us-button {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    background: #ffdb15;
    color: #000;
    border: 3px solid white;
    padding: 1rem 1.6rem;
    border-radius: 50px;
    font-size: 1.3rem;
    cursor: pointer;
    max-width: 250px;
    display: block;
    margin: 4rem auto 0;
    position: relative;
    transition: background 0.3s ease, transform 0.2s ease;
}

.contact-us-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #ffe55c;
}

.contact-us-button:active {
    transform: translateY(0);
}

.contact-us-button::before {
    content: '';
    position: absolute;
    background: url('../images/birds1.webp') no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: -1;
    top: -50px;
    left: -120px;
    width: 400px;
    height: 400px;
    opacity: 0.1;
}

/* Quote Section */
.quote {
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    margin: 9rem 0 0 -1.5rem;
    line-height: 1.6;
    text-align: center;
    z-index: 1;
}

.quote::before {
    content: '';
    position: absolute;
    background: url('../images/birds2.webp') no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: -1;
    top: -160px;
    right: -150px;
    width: 300px;
    height: 400px;
}

.quote-author {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    margin: 0 0 3rem -2rem;
    line-height: 1.6;
    text-align: center;
}

/* Back to Top */
.back-to-top-container {
    position: absolute;
    bottom: 0rem;
    right: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.back-to-top {
    background-color: #ffdb15;
    color: #000;
    border: 3px solid white;
    border-radius: 50%;
    font-size: 1.8rem;
    width: 56px;
    height: 56px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.back-to-top-label {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: white;
}

/* ==========================================================================
    FOOTER STYLES
    ========================================================================== */

.footer {
    background-color: #1f1f50;
    color: white;
    padding: 2rem 1.5rem 4rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    position: relative;
    min-height: 200px;
}

.footer-columns {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-stretch;
}

.footer-column {
    width: 45%;
}

.footer-divider {
    width: 1px;
    background-color: #fff;
    height: auto;
    margin: 0 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.footer-links li {
    margin-bottom: 0.3rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

.social-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
}

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

.social-links li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.social-icon {
    width: 24px;
    height: 24px;
}

.social-links a {
    color: white;
    text-decoration: underline;
    font-size: 0.95rem;
}

.footer-bottom {
    position: absolute;
    bottom: 1rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin: 0;
}

.copyright {
    font-size: 0.9rem;
    margin: 0;
    align-self: flex-end;
    font-family: 'Poppins';
    font-weight: 400;
}

/* ==========================================================================
   DESKTOP STYLES (768px and up)
   ========================================================================== */

@media (min-width: 768px) {

    .header-content,
    .gradient-box .content,
    .how-it-works-section .content,
    .gradient-box-bottom .content,
    .footer-columns,
    .footer-bottom {
        /* clamp(min, fluid, max): grows with viewport but never exceeds max */
        max-width: clamp(var(--container-min), 85vw, var(--container-max)) !important;
        margin-left: auto;
        margin-right: auto;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    /* Header Desktop Styles */
    .header-buttons,
    .hamburger-menu,
    .signup-button {
        display: none;
    }

    .benefits-section {
        grid-template-columns: 1fr 1fr;
        gap: 120px;
        margin-bottom: 5rem;
        margin-top: 4rem;
    }
    
    .main-heading {
        font-size: 2rem;
    }
    
    .benefit-box {
        padding: 30px;
    }
    
    .benefit-item {
        font-size: 1rem;
    }

    .desktop-nav {
        display: flex;
        gap: 1rem;
        align-items: center;
    }

    .header-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .header-logo {
        height: 60px;
    }

    .login-link {
        font-size: 1rem;
        font-family: 'Poppins';
        font-weight: 400;
        color: #ffdb15;
        text-decoration: underline;
        margin-left: 20px;
        display: inline-block;
    }

    /* Hero Section Desktop */
    .gradient-box {
        padding: 9rem 2rem 8rem 2rem;
    }

    .gradient-box .content {
        max-width: min(1200px, 95%);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 4rem;
        margin-bottom: 4rem;
    }

    .gradient-box::before {
        top: 100px;
        width: 400px;
        height: 475px;
    }

    .content-text {
        flex: 1;
        max-width: 560px;
    }

    .content-image {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .content-image::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        background: #000;
        opacity: 0.4;
        border-radius: 70px;
        z-index: 1;
    }

    .content-image img {
        max-width: 100%;
        height: auto;
        max-height: 250px;
        object-fit: contain;
        position: relative;
        z-index: 2;
    }

    h1 {
        font-size: 2.6rem;
    }

    .desc {
        font-size: 1.3rem;
    }

    .desc a {
        color: #ffdb15;
        text-decoration:underline;
        pointer-events: visible;
    }

    .coming-soon {
        font-size: 1.1rem;
    }

    .skip-the-agency {
        font-size: 3rem;
    }

    /* Silver Background Desktop */
    .silverbar-mobile {
        display: none;
    }

    .silverbar-desktop {
        display: block;
    }

    .silverbar-wrapper {
        background-image: url('../images/silverbackground2.svg');
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background-position: center center;
        margin-top: -9rem;
        position: relative;
        min-height: 50rem;
        height: auto;
        padding-bottom: 3rem;
    }

    .silverbar-wrapper::before {
        top: 60px;
        left: -121px;
        width: 530px;
        height: 640px;
        opacity: 0.15;
    }

    .silverbar-wrapper::after {
        top: 25px;
        right: 0px;
        width: 400px;
        height: 900px;
    }

    /* How It Works Desktop */
    .how-it-works-section {
        position: relative;
        background: transparent;
        padding: 11rem 2rem 8rem 2rem;
        color: #000;
        z-index: 15;
        pointer-events: all;
    }

    .how-it-works-section .content {
        max-width: min(1200px, 95%);
        margin: 0 auto;
    }

    .section-title {
        font-size: 3rem;
        margin-bottom: 4rem;
    }

    .steps-container {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 3rem;
    }

    .step {
        flex: 1;
        text-align: center;
        margin-bottom: 0;
        max-width: 350px;
    }

    .step-icon {
        margin-bottom: 1.5rem;
    }

    .icon {
        width: 120px;
        height: 120px;
    }

    .step-number {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .step-description {
        font-size: 1.1rem;
    }

    /* Bottom Section Desktop */
    .gradient-box-bottom {
        margin-top: -8rem;
        padding-top: 8rem;
    }

    .gradient-box-bottom .content {
        max-width: min(1200px, 95%);
    }

    .gradient-box-bottom::before {
        bottom: 50px;
        width: 400px;
        height: 700px;
    }

    .why-flok-heading {
        font-size: 3rem;
        margin-top: 1.5rem;
    }

    .why-flok-text {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .contact-us-button {
        padding: 1.5rem 3.5rem;
        font-size: 1.7rem;
        max-width: 350px;
        margin-top: 2rem;
    }

    .contact-us-button::before {
        display: none;
    }

    /* Quote Desktop */
    .quote {
        margin: 2rem auto 1rem;
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        font-size: 1.1rem;
        max-width: 700px;
        text-align: center;
    }

    .quote::before {
        opacity: 0.05;
        top: -400px;
        right: -500px;
        width: 600px;
        height: 475px;
    }

    .quote-author {
        margin: 0 auto;
    }

    /* Footer Desktop */
    .footer {
        padding: 4rem 2rem 5rem;
    }

    .footer-columns {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
        gap: 2rem;
        max-width: 88%;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
    }

    .footer-column {
        box-sizing: border-box;
        padding: 0 0;
        text-align: center;
        font-size: 2rem;
    }

    .footer-divider {
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        width: 1px;
        height: 100%;
        background-color: white;
        opacity: 1;
        margin: 0 0;
    }

    .footer-heading {
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        font-size: 1.6rem;
        color: #ffdb15;
        margin-bottom: 1.5rem;
    }

    .footer-links {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
        margin-left: -1.5rem;
        line-height: 1.6;
        font-size: 1.5rem;
    }

    .footer-links li {
        margin: 0;
        font-size: 1rem;
    }

    .footer-links a {
        font-size: 1rem;
    }

    .footer-left {
        padding-left: 4rem;
    }

    .footer-left .footer-links a {
        font-size: 1.2rem;
    }

    .social-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .social-links li {
        font-size: 1.5rem;
        gap: 0.4rem;
    }

    .social-links a {
        font-size: 1.2rem;
    }

    .footer-bottom {
        margin-top: 3rem;
        max-width: 88%;
        margin-left: auto;
        margin-right: auto;
        padding-top: 1rem;
    }

    .footer-logo {
        height: 40px;
    }
}