* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #001329;
    color: white;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.landing-page {
    background-color: #001329;
    position: relative;
    width: 100%;
    min-height: 100vh;
}

/* Top Banner */
.top-banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(130, 130, 130, 0.24);
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    z-index: 50;
    margin-top: 40px;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 31px;
}

.banner-text {
    font-size: 24px;
    font-weight: 400;
    color: white;
}

.banner-flag {
    width: 67px;
    height: 45px;
    object-fit: cover;
}

.btn-banner {
    background-color: white;
    color: #001329;
    font-size: 24px;
    font-weight: 400;
    padding: 16px;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
}

.btn-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Navigation Menu */
.nav-menu {
    position: absolute;
    top: 205px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    gap: 46px;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    z-index: 100;
    transition: all 0.3s ease;
}

.nav-menu.sticky {
    position: fixed;
    top: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.nav-menu a {
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    position: relative;
    padding-bottom: 4px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0076ff;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #0076ff;
}

/* Main Container */
.main-container {
    position: absolute;
    top: 164px;
    left: 50%;
    transform: translateX(-50%);
    width: 1440px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
    margin-top: 40px;
}

/* Header */
.header-landings {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1120px;
    padding: 0 21px;
}

.logo-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    width: 260px;
}

.logo img {
    height: 43px;
    width: 176px;
}

.btn-primary {
    background-color: #184956;
    color: white;
    font-size: 20px;
    font-weight: 600;
    padding: 16px;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 73, 86, 0.5);
    background-color: #2a6a7a;
}

.btn-blue {
    background-color: #0076FF;
    color: white;
    font-size: 20px;
    font-weight: 600;
    padding: 16px;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
}

.btn-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 73, 86, 0.5);
    background-color: #0076FF;
}

/* Hero Section */
.hero-section {
    display: flex;
    gap: 246px;
    align-items: center;
    width: 100%;
    padding-left: 161px;
    padding-right: 3px;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 41px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    color: white;
    width: 540px;
}

.hero-description {
    font-size: 36px;
    font-weight: 300;
    line-height: 1.3;
    color: white;
    width: 496px;
}

.btn-cta {
    background-color: #184956;
    color: white;
    font-size: 20px;
    font-weight: 600;
    padding: 16px;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 73, 86, 0.5);
    background-color: #2a6a7a;
}

.hero-image {
    width: 349px;
    height: 394px;
    overflow: hidden;
    border-radius: 8px;
}

.hero-image img {
    width: 100%;
    height: 132.59%;
    object-fit: cover;
    object-position: top;
}

/* Features Section */
.features-section {
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    gap: 140px;
    padding: 10px 0;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
    max-width: 290px;
    text-align: center;
}

.feature-item img {
    width: 20px;
    height: 20px;
    margin-bottom: 8px;
}

.feature-text {
    font-size: 20px;
    font-weight: 600;
    color: white;
}

.feature-description {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
    color: white;
}

/* Dividers */
.divider {
    height: 1.5px;
    background: rgba(255, 255, 255, 0.2);
}

.divider-small {
    width: 144px;
}

.divider-large {
    width: 552px;
}

.divider-large-2 {
    width: 616px;
}

/* FAQ Section */
.faq-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    width: 1120px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 76px;
    color: white;
    text-align: center;
    width: 100%;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 24px;
    width: 100%;
}

.faq-card {
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 80px 40px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

.faq-card-more {
    background: rgba(46, 46, 46, 0.08);
    border: 6px solid rgba(255, 255, 255, 0);
    border-radius: 140px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.faq-card-more:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 36px;
    color: white;
}

.faq-text {
    font-size: 24px;
    font-weight: 300;
    line-height: 36px;
    color: white;
}

.plus-icon {
    font-size: 80px;
    color: white;
    font-weight: 300;
}

/* Impact Section */
.impact-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    width: 1120px;
}

.impact-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 24px 0;
    /* width: 769px; */
}

.impact-item {
    display: flex;
    gap: 16px;
    align-items: center;
    width: 100%;
}

.impact-item img {
    width: 40px;
    height: 40px;
}

.impact-text {
    font-size: 32px;
    font-weight: 300;
    line-height: 36px;
    color: white;
}

.impact-text .bold {
    font-weight: 600;
}

/* Benefits Section */
.benefits-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    width: 1120px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 64px;
    width: 100%;
}

.benefit-card {
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

.benefit-light {
    background: rgba(46, 46, 46, 0.08);
}

.benefit-dark {
    background: rgba(5, 5, 5, 0.24);
}

.benefit-card img {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.benefit-title {
    font-size: 32px;
    font-weight: 300;
    line-height: 36px;
    color: #e7e7e9;
    max-width: 495px;
}

.benefit-title .bold {
    font-weight: 800;
}

.benefit-text {
    font-size: 32px;
    font-weight: 300;
    line-height: 36px;
    color: #e7e7e9;
}

/* Testimonials Section */
.testimonials-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    width: 1120px;
}

.testimonials-grid {
    position: relative;
    width: 100%;
    height: 983px;
}

.testimonial-card {
    position: absolute;
    background: rgba(46, 46, 46, 0.08);
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 21px;
    width: 351px;
}

.testimonial-card:nth-child(1) {
    left: 0;
    top: 0;
}

.testimonial-card:nth-child(2) {
    left: 385px;
    top: 0;
}

.testimonial-card:nth-child(3) {
    left: 768.67px;
    top: 0;
}

.testimonial-card:nth-child(4) {
    left: 769px;
    top: 449px;
    height: 472px;
}

.testimonial-card:nth-child(5) {
    left: 385px;
    top: 526px;
    height: 395px;
}

.testimonial-card:nth-child(6) {
    left: 0;
    top: 440px;
    height: 450px;
}


.testimonial-text {
    font-size: 24px;
    font-weight: 300;
    line-height: 36px;
    color: white;
}

.stars {
    display: flex;
    gap: 4px;
}

.stars img {
    width: 24px;
    height: 24px;
}

.testimonial-author {
    font-size: 20px;
    font-weight: 800;
    line-height: 36px;
    color: white;
    width: 267px;
}

/* Footer */
.footer {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.footer-logo-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo img {
    height: 110px;
    width: auto;
}

.footer-text {
    height: 90.898px;
    width: 373px;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(to right, #0076ff, #184956);
    z-index: 1000;
    transition: width 0.1s ease;
}

/* Fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Image loading */
img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.loaded {
    opacity: 1;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    background-color: #184956;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 1440px) {
    .main-container {
        width: 100%;
        padding: 0 20px;
    }

    .hero-section {
        flex-direction: column;
        gap: 50px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-title {
        width: 100%;
        font-size: 40px;
    }

    .hero-description {
        width: 100%;
        font-size: 28px;
    }

    .header-landings,
    .faq-section,
    .impact-section,
    .benefits-section,
    .testimonials-section {
        width: 100%;
    }

    .faq-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .top-banner {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .banner-content {
        flex-direction: column;
        gap: 10px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 50%;
        transform: translateX(-50%) translateY(-200%);
        flex-direction: column;
        width: 90%;
        max-width: 300px;
        background-color: rgba(0, 0, 0, 0.95);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .nav-menu.open {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .header-landings {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .features-section {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
    }

    .impact-list {
        width: 100%;
    }

    .testimonials-grid {
        position: static;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .testimonial-card {
        position: static;
        width: 100%;
        height: auto !important;
    }

    .footer-subtitle {
        width: 100%;
        font-size: 24px;
    }

    .divider {
        height: 1.5px;
        background: rgba(255, 255, 255, 0.2);
    }

    .divider-small {
        width: 144px;
    }

    .divider-large {
        width: 144px;
    }

    .divider-large-2 {
        width: 144px;
    }
}

/* Loading animation for images */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

img:not(.loaded) {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Testimonial card hover effect */
.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
    transform: scale(1.02);
}

/* FAQ card icons animation */
.faq-card img {
    transition: transform 0.3s ease;
}

.faq-card:hover img {
    transform: scale(1.1) rotate(5deg);
}

/* Benefits items hover effect */
.benefit-card img {
    transition: transform 0.3s ease;
}

.benefit-card:hover img {
    transform: scale(1.15) rotate(10deg);
}

/* Features section animation */
.feature-item {
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item img {
    transition: transform 0.3s ease;
}

.feature-item:hover img {
    transform: scale(1.2);
}

/* Impact items hover effect */
.impact-item {
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 8px;
}

.impact-item:hover {
    background-color: rgba(255, 255, 255, 0.03);
    transform: translateX(10px);
}

.impact-item img {
    transition: transform 0.3s ease;
}

.impact-item:hover img {
    transform: scale(1.15) rotate(10deg);
}