@font-face {
    font-family: 'Raleway';
    src: url(../text/Raleway/Raleway-VariableFont_wght.ttf) format('truetype');
}

/* Reset & Base Styles */
*,
::before,
::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
}

html,
body {
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {

    color: #ffffff;
    overflow-x: hidden;
    background: #fff;
}

/* App Container */
#app {
    width: 100%;
    min-height: 100vh;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 3rem;
    transition: all 0.3s ease;
}

.header.scrolled {
    /* background: rgba(0, 0, 0, 0.8); */
    /* backdrop-filter: blur(10px); */
    padding: 1rem 3rem;
}

.header-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: block;
}

.logo-text {
    margin-top: 2px;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    height: 62px;
    gap: 2.5rem;
    padding: 0 2.5rem;
    align-items: center;
    border: 1px solid #FFFFFF80;
    background: #FFFFFF33;
    border-radius: 40px;
    backdrop-filter: blur(10px);
}

.nav-link {
    color: #151515;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #1B7950;
}

/* .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ffffff;
} */

/* Header Controls */
.header-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 62px;
    padding: 0 22px;
    /* background: transparent; */
    border: 2px solid #FFFFFF;
    border-radius: 50px;
    color: white;
    font-size: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background: #FFFFFF33;
}

.lang-btn img {
    height: 27px;
}

.lang-btn:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.menu-btn {
    width: 192px;
    height: 62px;
    border: 2px solid white;
    border-radius: 50px;
    color: white;
    backdrop-filter: blur(10px);
    background: #FFFFFF33;
    font-size: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-btn:hover {
    background: white;
    color: #2d5f4f;
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1B7950;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-content {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.menu-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.home-btn {
    padding: 0.75rem 2rem;
    background: transparent;
    border: 2px solid white;
    border-radius: 50px;
    color: white;

    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.home-btn:hover {
    background: white;
    color: #2d5f4f;
}

.close-btn {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: white;
    transform: rotate(90deg);
}

.close-btn:hover svg path {
    stroke: #2d5f4f;
}

/* Menu Navigation */
.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: auto;
}

.menu-link {
    color: white;
    text-decoration: none;
    font-size: 3rem;
    font-weight: 700;
    transition: all 0.3s ease;
    /*  */
}

.menu-link:hover {
    opacity: 1;
    transform: translateX(10px);
    opacity: 0.6;
}

.menu-logo {
    margin-top: 4rem;
    align-self: flex-end;
}

.menu-logo svg,
.menu-logo img {
    width: 77px;
    height: 49px;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 2rem;
    max-width: 1050px;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: white;
}

.hero-title .highlight {
    /* font-weight: 700; */
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.scroll-down {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-down:hover {
    transform: translateX(-50%) scale(1.1);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Partners Section */
.partners-section {
    padding: 8rem 0;
    /* overflow: hidden; */
}

.partners-container {
    margin: 0 auto;
}

.partners-title {
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    color: #1B7950;
    margin-bottom: 6rem;
}

.partners-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-top: 1px solid #1B7950;
    border-bottom: 1px solid #1B7950;
}

.partners-track {
    display: flex;
    /* gap: 4rem; */
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-item {
    flex-shrink: 0;
    height: 500px;
    width: 600px;
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    border-right: 1px solid #1B7950;
}

.partner-item:hover {
    transform: none;
}

.partner-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-item:hover img {
    filter: none;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Bridging Section */
.bridging-section {
    background: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.bridging-section::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 450px;
    background: #1B7950;
    z-index: 0;
}

.bridging-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bridging-content {
    color: white;
    position: relative;
    z-index: 3;
}

.bridging-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.bridging-text {
    font-size: 1.5rem;
    line-height: 1.8;
    /* opacity: 0.95; */
}

.bridging-image {
    position: relative;
    z-index: 2;
}

.bridging-image img {
    width: 100%;
    height: auto;
    max-height: min(800px, 70vh);
    object-fit: contain;
    display: block;
    border-radius: 0;
    margin: -4rem 0;
}

.bridging-image .mobile-flag {
    display: none;
}

.bridging-image .desktop-flag {
    display: block;
}

/* Services Section */
.services-section {
    margin-top: 6rem;
}

.services-container {}

.services-intro {
    display: flex;
    flex-direction: column;
    align-items: end;
    background-color: #F8FFFC;
    width: 100%;
    gap: 3rem;
    padding: 8rem;
}

.services-description {
    font-size: 3rem;
    line-height: 1.4;
    color: #1B7950;
    font-weight: 700;
    padding-right: 200px;
}

.brazil-map {
    width: 150px;
    height: auto;
    flex-shrink: 0;
}

.mission-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 2fr;
    padding: 10rem 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.mission-section::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 420px;
    background: #1B7950;
    z-index: 0;
}

.mission-image {
    position: relative;
    z-index: 2;
}

.mission-image img {
    width: 100%;
    height: auto;
    max-height: min(760px, 65vh);
    object-fit: contain;
    display: block;
    border-radius: 0;
    margin: -4rem 0;
}

.mission-content {
    color: white;
    position: relative;
    z-index: 3;
    background: transparent;
    padding: 0;
    padding-left: 3rem;
}

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

.mission-title {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 31px;
}

.advantages-section {
    padding: 5rem 8rem;
}

.advantages-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #1B7950;
    text-align: center;
    margin-bottom: 5rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 5rem;
}

.advantage-card {
    padding: 71.5px 57px;
    border: 1px solid #1B7950;
    /* border-radius: 8px; */
    transition: all 0.3s ease;
}

.advantage-card:hover {
    border-color: #1B7950;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(27, 121, 80, 0.1);
}

.advantage-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1B7950;
    margin-bottom: 0.75rem;
}

.advantage-description {
    font-size: 32px;
    color: #797979;
    line-height: 1.5;
}

/* Team Section */
.team-section {
    background: #1B7950;
    padding: 6rem 2rem;
    overflow: hidden;
    position: relative;
}

.team-container {
    max-width: 1600px;
    margin: 0 auto;
}

.team-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: white;
    text-align: center;
    margin-bottom: 5rem;
}

.team-swiper {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 60px;
    margin-bottom: 1rem;
}

.swiper-slide.team-slide {
    background-position: center;
    background-size: cover;
    width: 450px;
    height: 570px;
    filter: grayscale(100%);
    opacity: 1;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.swiper-slide.team-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide-active.team-slide {
    filter: grayscale(0%);
    opacity: 1;
    /* Let Swiper handle z-index to ensure correct layering */
    /* z-index: 10; */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.team-info {
    text-align: center;
    color: white;
    padding: 2rem 0;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.team-member-name {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    transition: opacity 0.3s ease;
}

.team-member-position {
    font-size: 1.25rem;
    opacity: 0.85;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

/* Brasil Business Section */
.brasil-section {
    padding: 0;
    overflow: hidden;
    /* Cutout calibration (tweak per breakpoint if PNG has transparent padding) */
    --brasil-cutout-dx: 0px;
    --brasil-cutout-dy: 0px;
    --brasil-cutout-cy-mul: 0.5;
    --brasil-cutout-r-mul: 0.95;

    background: transparent;
}

.brasil-container {
    width: 100%;
    margin: 0;
    border: none;
    background: #F8FFFC;
    position: relative;
    overflow: hidden;
    /* padding: 0 14rem; */
}

/* Brasil Header - Top Section */
.brasil-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 5rem auto;
    justify-content: space-around;
    /* align-items: flex-start; */
    border-bottom: none;
    padding: 5rem 4rem;
    max-width: calc(1600px + 8rem);
    /* padding: 5rem 4rem; */
}

.brasil-header-left {
    padding-right: 3rem;
    border-right: none;
}

.brasil-title {
    font-size: 2.75rem;
    font-weight: 600;
    color: #1B7950;
    margin: 0;
    line-height: 1.2;
}

.brasil-header-right {
    padding-left: 3rem;
}

.brasil-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #797979;
    margin: 0;
}

/* Brasil Content - Middle Section */
.brasil-content {
    padding: 0 4rem;
    background: url('./images/brasil-bg.png') center / cover no-repeat;
    /* display: flex; */
    /* gap: 0; */
    /* align-items: stretch; */
    margin: 0;
    position: relative;
    /* background: transparent; */
    padding-bottom: 480px;
}

.brasil-con {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    margin: 0 auto;
}

.brasil-left {
    padding: 2.5rem 2rem 2.5rem 0;
    border-right: none;
}

.brasil-right {
    padding: 2.5rem 0 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.brasil-stats {
    display: flex;
    flex-direction: column;
}

.stat-card {
    padding: 1.75rem 0;
    border-bottom: none;
}

.brasil-stats .stat-card:first-child {
    padding-top: 0;
}

.brasil-stats .stat-card:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.stat-card--exports {
    padding: 0 0 2.25rem;
}

.stat-label {
    font-size: 1.5rem;
    color: #1B7950;
    font-weight: 600;
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1B7950;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.stat-description {
    font-size: 1.2rem;
    color: #797979;
    line-height: 1.6;
    margin: 0;
    font-weight: 700;
}

.brasil-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin-top: auto;
    margin-bottom: -360px;
    overflow: visible;
}

.brasil-earth-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    transform: translateX(-5px);
}

.earth-globe {
    width: 600px;
    height: 600px;
    position: relative;
    z-index: 2;
    transform-origin: 50% 50%;
    will-change: transform;
}

/* Brasil Text - Bottom Section */
.brasil-text-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -50px;
    /* Adjust if needed to align perfectly at bottom */
    display: flex;
    justify-content: center;
    pointer-events: none;
    padding: 0;
    z-index: 5;
    width: 100%;
}

.brasil-text-svg {
    position: relative;
    /* Changed from absolute to flow in wrapper */
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
    pointer-events: none;
    z-index: 3;
    max-height: 400px;
    /* Limit height if it gets too big */
}

.brasil-footer-text {
    border-top: none;
    padding: 3rem 0 8rem;
    max-width: 1400px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.brasil-footer-text p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #797979;
    margin: 0;
}

/* Pain Points & Solutions Section */
.solutions-section {
    background: white;
    padding: 5rem 2rem;
}

.solutions-container {
    max-width: 1600px;
    margin: 0 auto;
}

.solutions-header {
    text-align: center;
    margin-bottom: 4rem;
}

.solutions-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1B7950;
}

.solutions-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.solution-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    padding: 2rem 0;
    border-bottom: 1px solid #1B7950;
}

.solution-item:last-child {
    border-bottom: none;
}

.pain-point,
.solution-point {
    padding: 1.5rem;
}

/* .pain-point {
    border-left: 4px solid #dc3545;
}

.solution-point {
    background: #f0f8f5;
    border-left: 4px solid #1B7950;
} */

.section-label {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: #1B7950;
}

.point-title {
    font-size: 32px;
    font-weight: 700;
    color: #797979;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.point-description {
    font-size: 24px;
    color: #797979;
    line-height: 1.7;
}

/* Case Study Section */
.case-study-section {
    /* padding: 5rem 2rem; */
}

.case-study-container {
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    position: relative;
    height: 100dvh;
    /* Changed from 100vh to 100dvh for mobile bars */
    overflow: visible; /* 允许内容溢出，防止底部被剪切 */
}

.case-study-content {
    /* background: #F8FFFC; */
    padding: 2rem 4rem;
    width: 50%;
    height: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-study-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15rem 2rem 8rem 4rem;
}

.case-study-link:hover {
    /* transform: translateX(10px); */
}

.case-study-link .case-title {
    transition: color 0.3s ease;
}

.case-study-link:hover .case-title {
    color: #145a3a;
}

.logo-icon {
    margin-bottom: 2rem;
}

.logo-icon svg {
    width: 60px;
    height: 60px;
}

.case-label {
    font-size: 1.25rem;
    color: #797979;
    margin-bottom: 1rem;
    font-weight: 700;
}

.case-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1B7950;
    line-height: 1.3;
}

.case-expertise {
    background: white;
    width: 50%;
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: visible; /* 允许内容溢出，防止被裁剪 */
}

.expertise-header {
    background: #e5e5e5;
    padding: 8.5rem 2rem 3rem 2rem;
    /* Increased to clear fixed header */
    position: relative;
    z-index: 2;
    width: 100%;
    flex-shrink: 0;
}

.expertise-cards-outer {
    flex-grow: 1;
    position: relative;
    overflow: visible; /* 允许卡片溢出显示 */
    height: 100%;
}

.expertise-cards-inner {
    display: flex;
    flex-direction: column;
    /* 垂直排列 */
    gap: 0;
}

.expertise-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #797979;
    margin: 0;
}

.expertise-card {
    background: #1B7950;
    padding: 0 4rem;
    color: white;
    height: 900px;
    /* 固定高度 */
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* 关键：内容从顶部开始排列 */
    align-items: stretch;
    /* 确保宽度占满 */
    border: none;
    box-sizing: border-box;
    transform-origin: top center;
    position: relative;
    /* 关键：改为 relative */
}


/* Inner wrapper to keep text stable during height animation */
.card-content-wrapper {
    /* If we can't edit HTML, apply to children, but wrapper is better. 
       Let's assume we can rely on padding top for now or edit HTML. 
       The user said "text position changes".
       With justify-content: flex-start and padding-top, the top stays reliable.
    */
    /* Actually visual centering is dynamic. 
       If we want "reveal underneath", the top card shrinks.
       If it shrinks from bottom (height reduces), the top stays at top.
       So justify-content: flex-start is correct. 
       But we need to center it visually in the 100% height (before shrink).
       So we need a fixed height container inside.
    */
}

.expertise-card:nth-child(even) {
    background: #F8FFFC;
    border: 1px solid #1B7950;
    color: #1B7950;
}

.expertise-card:nth-child(even) .expertise-card-title {
    color: #1B7950;
}

.expertise-card:nth-child(even) .expertise-card-description {
    color: #1B7950;
    opacity: 0.9;
}

/* 为最后一个卡片添加底部边框 */
.expertise-card:last-child {
    /* border-bottom: 4px solid #1B7950; */
    /* padding-bottom: 4rem;  */
}

.expertise-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15rem;
}

.expertise-card-description {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* iGaming License Section */
.igaming-section {
    background: #FBFBFB;
    padding: 5rem 4rem;
}

.igaming-container {
    margin: 0 auto;
}

.igaming-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 6rem;
    gap: 3rem;
}

.igaming-header-left {
    flex-shrink: 0;
}

.igaming-header-left .logo-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.igaming-header-left .logo-icon svg {
    width: 100%;
    height: 100%;
}

.igaming-header-right {
    flex: 1;
    text-align: right;
}

.igaming-link {
    text-decoration: none;
    display: flex;
    align-items: end;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.igaming-link:hover {
    transform: scale(1.05);
}

.igaming-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1B7950;
    line-height: 1.3;
    margin: 0;
}

.igaming-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-card {
    background: #F8FFFC;
    border: 2px solid #1B7950;
    padding: 6rem 6rem;
    border-radius: 20px;
    transition: box-shadow 0.3s ease;
    /* Removed transform to fix GSAP conflict */
    position: relative;
    display: flex;
    align-items: center;
    gap: 6rem;
    min-height: 220px;
}

.step-card.step-filled {
    background: #2D7A55;
    border-color: #2D7A55;
    color: white;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(27, 121, 80, 0.15);
}

.step-number {
    font-size: 10rem;
    font-weight: 700;
    color: #2D7A55;
    margin: 0;
    line-height: 1;
    flex-shrink: 0;
    /* width: 200px; */

    /* Flex to align SVG */
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number svg {
    width: 1.4em;
    height: 0.9em;
    display: block;
}

.step-card.step-filled .step-number {
    color: white;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    color: #2D7A55;
}

.step-card.step-filled .step-title {
    color: white;
}

.step-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #797979;
    margin: 0;
}

.step-card.step-filled .step-description {
    color: white;
    opacity: 0.95;
}

/* Client Testimonials Section */
.testimonials-section {
    padding: 5rem 0 5rem 4rem;
    overflow: hidden;
    background: #F8FFFC;
}

.testimonials-container {
    margin: 0 auto;
    max-width: 100%;
}

.testimonials-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.testimonials-header .logo-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
}

.testimonials-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.testimonials-left {
    flex-shrink: 0;
    width: 50%;
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: stretch;
    min-height: 600px;
    padding-bottom: 6rem;
}

.testimonials-left .logo-icon {
    width: 83px;
    height: 83px;
    margin-top: 0;
    order: 2;
}

.testimonials-left .logo-icon svg {
    width: 100%;
    height: 100%;
}

.testimonials-main-title {
    font-size: 3rem;
    font-weight: 600;
    color: #1B7950;
    line-height: 1.2;
    margin: 0;
    order: 1;
}

.testimonials-right {
    flex: 1;
    min-width: 0;
    position: relative;
    padding-bottom: 6rem;
}

.testimonials-swiper {
    overflow: visible;
    padding: 1rem 0;
    margin-right: 0;
}

.testimonials-swiper .swiper-wrapper {
    margin-right: 0;
}

.testimonials-swiper .swiper-slide {
    width: 100% !important;
    height: auto;
}

.testimonial-slide {
    background: #F8FFFC;
    padding: 3.5rem 3rem;
    border-radius: 0;
    position: relative;
    height: 100%;
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    border: 1px solid #1B7950;
}

.testimonial-slide.testimonial-filled {
    background: #1B7950;
    color: white;
    /* border-color: #1B7950; */
}

.testimonial-slide.testimonial-filled svg path {
    stroke: white;
    fill: white;
}

.testimonial-slide svg path {
    stroke: #1B7950;
    fill: #1B7950;
}

.quote-icon {
    margin-bottom: 2rem;
    width: 106px;
    height: 80px;
}

.quote-icon svg {
    width: 100%;
    height: 100%;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: #333;
    flex: 1;
}

.testimonial-slide.testimonial-filled .testimonial-text {
    color: white;
}

.testimonial-author {
    text-align: right;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #1B7950;
}

.testimonial-slide.testimonial-filled .author-name {
    color: white;
}

.author-company {
    font-size: 1rem;
    color: #1B7950;
}

.testimonial-slide.testimonial-filled .author-company {
    color: white;
    opacity: 0.9;
}

.testimonials-nav {
    display: flex;
    gap: 3rem;
    justify-content: flex-end;
    position: absolute;
    bottom: 0;
    right: 4rem;
    width: auto;
}

.nav-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #1B7950;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.nav-btn svg {
    width: 24px;
    height: 24px;
}

.nav-btn:hover {
    background: #1B7950;
}

.nav-btn:hover svg path {
    stroke: white;
    fill: white;
}

/* Why Partner Section */

/* Why Partner Section */
.why-partner-section {
    background: #fff;
    padding: 5rem 4rem;
}

.why-partner-container {
    max-width: 1600px;
    margin: 0 auto;
}

.why-partner-header {
    margin-bottom: 3rem;
    display: flex;
    gap: 5rem;
}

.why-partner-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1B7950;
    margin-bottom: 1.5rem;
}

.why-partner-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #797979;
}

/* Accordion Styles */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.accordion-item {
    border: none;
    overflow: hidden;
}

/* Alternating background colors for accordion items */
.accordion-item:nth-child(odd) .accordion-header {
    background: #1B7950;
}

.accordion-item:nth-child(even) .accordion-header {
    background: #f5f5f5;
}

.accordion-item:nth-child(odd) .accordion-title {
    color: white;
}

.accordion-item:nth-child(even) .accordion-title {
    color: #1B7950;
}

.accordion-header {
    padding: 2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* .accordion-item:nth-child(odd) .accordion-header:hover {
    background: #176843;
}

.accordion-item:nth-child(even) .accordion-header:hover {
    background: #e8e8e8;
} */

.accordion-title {
    font-size: 1.125rem;
    font-weight: 500;
    margin: 0;
    flex: 1;
}

.accordion-toggle {
    background: transparent;
    border: 2px solid currentColor;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.accordion-item:nth-child(odd) .accordion-toggle {
    border-color: white;
}

.accordion-item:nth-child(even) .accordion-toggle {
    border-color: #1B7950;
}

.accordion-toggle svg {
    transition: transform 0.3s ease;
    width: 20px;
    height: 20px;
}

/* When open, hide vertical line to show minus sign */
.accordion-toggle svg.rotate path:first-child {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.accordion-toggle svg path {
    transition: opacity 0.3s ease;
}

.accordion-item:nth-child(odd) .accordion-toggle svg path {
    stroke: white;
    fill: white;
}

.accordion-item:nth-child(even) .accordion-toggle svg path {
    stroke: #1B7950;
    fill: #1B7950;
}

/* Don't rotate, just hide the vertical line */
.accordion-toggle svg.rotate path:first-child {
    opacity: 0 !important;
}

.accordion-content {
    overflow: hidden;
}

.accordion-item:nth-child(odd) .accordion-body {
    background: #1B7950;
}

.accordion-item:nth-child(even) .accordion-body {
    background: #f5f5f5;
}

.accordion-body {
    padding: 0rem 2.5rem 3rem 2.5rem;
}

.accordion-item:nth-child(odd) .accordion-body p {
    color: white;
}

.accordion-item:nth-child(even) .accordion-body p {
    color: #333;
}

.accordion-body p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.accordion-body p:last-child {
    margin-bottom: 0;
}

/* Vue Transition for Accordion */
.accordion-enter-active,
.accordion-leave-active {
    transition: all 0.4s ease;
    overflow: hidden;
}

.accordion-enter,
.accordion-leave-to {
    max-height: 0;
    opacity: 0;
}

.accordion-enter-to,
.accordion-leave {
    max-height: 500px;
    opacity: 1;
}

/* Thought Leadership & Insights Section */
.insights-section {
    padding: 8rem 4rem;
    overflow: hidden;
}

.insights-container {
    /* max-width: 1400px; */
    margin: 0 auto;
}

.insights-header {
    margin-bottom: 3rem;
}

.insights-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1B7950;
}

.insights-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.insights-swiper,
.market-insight-swiper {
    overflow: visible;
    padding: 1rem 0 3rem 0;
}

.insights-swiper .swiper-slide,
.market-insight-swiper .swiper-slide {
    height: auto;
    width: 600px;
}

.insights-swiper .insight-card {
    width: 700px;
    background: white;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    /* margin-right: 4rem !important; */
}

.insight-card:hover {
    transform: translateY(-5px);
}

.insight-image {
    width: 100%;
    height: 580px;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: grayscale(100%);
}

.insight-content {
    background: #1B7950;
    padding: 2rem;
    color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.insight-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    width: 100%;
}

.insight-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: white;
    opacity: 0.95;
    flex: 1;
}

.insight-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    text-decoration: none;
}

.insight-btn:hover {
    background: white;
    color: #1B7950;
}

.insights-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.insights-nav-btns {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.insights-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #1B7950;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.insights-nav-btn:hover {
    background: #1B7950;
}

.insights-nav-btn:hover svg path {
    stroke: white;
}

.see-all-btn {
    background: transparent;
    color: #1B7950;
    border: 2px solid #1B7950;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.see-all-btn:hover {
    background: #1B7950;
    color: white;
}

/* Market Insight Section - Two-tone Background */
.market-insight-section {
    background: linear-gradient(180deg, #1B7950 0%, #1B7950 50%, #F8FFFC 50%, #F8FFFC 100%);
    position: relative;
}

.market-insight-section .insights-title {
    color: white;
}

.market-insight-card {
    flex-direction: column-reverse;
    background: white;
    border: 1px solid #1B7950;
}

.market-insight-content {
    background: #F8FFFC;
    color: #1B7950;
    align-items: flex-start;
    display: block;
}

.market-insight-description {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1B7950;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    height: calc(1.5rem * 1.5 * 4);
}

.market-insight-image {
    height: 200px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 0;
    overflow: hidden;
}

.market-insight-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.market-insight-footer {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    position: relative;
    z-index: 2;
    color: #1B7950;
}

.market-insight-location {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.market-insight-date {
    font-size: 0.9375rem;
    /* color: #797979; */
    opacity: 0.9;
    margin: 0;
}

/* Footer Container */
.footer {
    background: white;
    padding: 0;
    position: relative;
}

/* CTA Section - Positioned at the boundary */
.cta-section {
    background: white;
    padding: 3rem 4rem 0;
    position: relative;
    z-index: 1;
}

.cta-container {
    margin: 0 auto;
    background: white;
    border: 1px solid #1B7950;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 5rem;
    transform: translateY(35%);
    max-width: 1400px;
}

.cta-text {
    flex: 1;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #1B7950;
    margin: 0 0 2rem 0;
    line-height: 1.2;
    white-space: pre-line;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #797979;
    margin: 0;
}

.cta-button {
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    background: #1B7950;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 240px;
    padding: 0;
}

.cta-button svg {
    width: 100px;
    height: 120px;
}

/* .cta-button:hover {
    transform: scale(1.1);
} */

.cta-button svg circle {
    transition: all 0.3s ease;
}

.cta-button:hover svg circle {
    fill: #1B7950;
}

.cta-button:hover svg path {
    stroke: white;
}

/* Footer Content (Green Background) */
.footer-content {
    background: #1B7950;
    color: white;
    padding: calc(3rem + 120px) 4rem 3rem;
}

.footer-main {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo img {
    height: 49px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.footer-tagline {
    font-size: 2.3rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    color: white;
}

.footer-links-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-column-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: white;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a,
.footer-contact a,
.footer-contact li {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    line-height: 1.6;
    /* opacity: 0.9; */
    /* transition: opacity 0.3s ease; */
}

.footer-links a:hover,
.footer-contact a:hover {
    opacity: 1;
}

.footer-bottom {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    /* justify-content: space-between; */
    align-items: center;
    font-size: 0.95rem;
}

.footer-legal {
    /* display: flex; */
    gap: 0.75rem;
    align-items: center;
}

.footer-legal a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-legal a:hover {
    opacity: 1;
}

.footer-legal span {
    opacity: 0.5;
}

.footer-copyright {
    margin: 0;
    opacity: 0.9;
    color: white;
}

/* Contact Page Styles */
.contact-section {
    background: white;
    padding: 8rem 2rem 5rem 0rem;
}

.contact-container {
    max-width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: start;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-left: 4rem;
    padding-right: 2rem;
    max-width: 1400px;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #1B7950;
    margin: 0;
    line-height: 1.1;
}

.contact-visual {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    object-fit: contain;
}

.contact-right {
    background: #1B7950;
    padding: 3.5rem 3rem;
    border-radius: 0;
    height: fit-content;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input,
.form-textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    font-size: 1rem;
    padding: 0.75rem 0;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-bottom-color: white;
}

.form-textarea {
    resize: vertical;
    /* min-height: 100px; */
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-input {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    cursor: pointer;
    accent-color: #1B7950;
    background-color: #1B7950;
}

.checkbox-label {
    color: white;
    font-size: 0.875rem;
    line-height: 1.5;
    flex: 1;
    cursor: pointer;
}

.form-submit {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.875rem 3rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    align-self: flex-end;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.form-submit:hover {
    background: white;
    color: #1B7950;
}

/* FAQ Section */


.faq-section .why-partner-header {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header {
        padding: 1.5rem 2rem !important;
    }

    .header.scrolled {
        padding: 1rem 2rem;
    }

    .desktop-nav {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .menu-link {
        font-size: 2.5rem;
    }

    /* Partners Section Tablet */
    .partners-title {
        font-size: 2.5rem;
    }

    .partner-item {
        width: 400px !important;
        height: 300px !important;
        padding: 2rem 5rem !important;
    }

    /* Bridging Section Tablet */
    .bridging-container {
        gap: 3rem;
    }

    .bridging-title {
        font-size: 2rem;
    }

    .bridging-text {
        font-size: 1rem;
    }

    /* Services Section Tablet */
    .services-intro {
        gap: 2rem;
    }

    .mission-section {
        gap: 2rem;
    }

    .mission-content {
        padding: 2.5rem;
    }

    .advantages-title {
        font-size: 2rem;
    }

    /* Team Section Tablet */
    .team-title {
        font-size: 2.5rem;
    }

    .team-photo:nth-child(1),
    .team-photo:nth-child(7) {
        width: 80px;
        height: 100px;
    }

    .team-photo:nth-child(2),
    .team-photo:nth-child(6) {
        width: 100px;
        height: 120px;
    }

    .team-photo:nth-child(3),
    .team-photo:nth-child(5) {
        width: 120px;
        height: 140px;
    }

    .team-photo:nth-child(4),
    .team-photo.active {
        width: 150px;
        height: 180px;
    }

    /* Why Partner Tablet */
    .why-partner-title {
        font-size: 2rem;
    }

    .accordion-title {
        font-size: 1.0625rem;
    }

    /* Brasil Section Tablet */
    .brasil-container {
        /* padding: 0 4rem; */
    }

    .brasil-con {
        grid-template-columns: 1fr;
    }

    .brasil-header {
        padding: 3.5rem 0 2.5rem;
        gap: 0;
    }

    .brasil-header-left {
        padding-right: 3rem;
    }

    .brasil-header-right {
        padding-left: 3rem;
    }

    .brasil-title {
        font-size: 2rem;
    }

    .brasil-left,
    .brasil-right {
        padding: 3rem;
    }

    .stat-value {
        font-size: 2.25rem;
    }

    .brasil-text-wrapper {
        padding: 0 3rem;
    }

    .brasil-text-svg {
        height: 220px;
    }

    .brasil-visual {
        margin-bottom: -6rem;
    }

    /* Testimonials Tablet */
    .testimonials-title {
        font-size: 2rem;
    }

    .testimonial-slide {
        min-width: calc(60% - 1rem);
        padding: 2.5rem 2rem;
    }

    /* Solutions Section Tablet */
    .solutions-title {
        font-size: 2rem;
    }

    .solution-item {
        gap: 1.5rem;
    }

    .point-title {
        font-size: 1.125rem;
    }


    /* Case Study Tablet & Mobile Update */
    .case-study-container {
        flex-direction: column;
        height: auto;
        /* Allow natural flow */
        gap: 0;
    }

    .case-study-content {
        width: 100%;
        height: auto;
        padding: 4rem 2rem;
    }

    .case-expertise {
        width: 100%;
        height: auto;
    }

    .expertise-header {
        position: relative;
        /* Not sticky/pinned in mobile flow typically */
        padding: 4rem 2rem 2rem;
        /* Increased top padding per request */
    }

    .expertise-cards-outer {
        height: auto;
        overflow: visible;
    }

    .expertise-cards-inner {
        position: relative;
        height: auto;
    }

    .expertise-card {
        position: relative;
        /* Stack normally */
        height: auto;
        min-height: 300px;
        padding: 3rem 2rem;
        margin-bottom: 0px;
    }

    /* Remove hover effect on mobile */
    .case-study-link:hover {
        transform: none;
    }

    .case-title {
        font-size: 2rem;
    }

    .expertise-card {
        padding: 2.5rem 1.5rem;
    }

    /* iGaming Tablet */
    .igaming-title {
        font-size: 2rem;
    }

    .step-number {
        font-size: 3.5rem;
    }

    /* Insights Tablet */
    .insights-title {
        font-size: 2rem;
    }

    .insight-card {
        min-width: calc(40% - 1rem);
    }

    .insight-image {
        height: 250px;
    }

    /* CTA Tablet */
    .cta-section {
        padding: 2rem 2rem 0;
    }

    .cta-container {
        padding: 3rem 3.5rem;
        transform: translateY(30%);
    }

    .cta-title {
        font-size: 2.8rem;
    }

    .cta-subtitle {
        font-size: 1.05rem;
    }

    .cta-button {
        width: 200px;
        height: 200px;
    }

    .cta-button svg {
        width: 80px;
        height: 95px;
    }

    /* Footer Tablet */
    .footer-content {
        padding: calc(3rem + 120px) 3rem 2rem;
    }

    .footer-main,
    .footer-bottom {
        gap: 4rem;
    }

    .footer-tagline {
        font-size: 2rem;
    }

    .footer-column-title {
        font-size: 1.35rem;
    }

    .footer-links-section {
        gap: 3rem;
    }

    .footer-links a,
    .footer-contact a,
    .footer-contact li {
        font-size: 1.05rem;
    }

    /* Contact Section Tablet */
    .contact-container {
        grid-template-columns: 1fr 1fr;
    }

    .contact-left {
        padding-right: 1.5rem;
        padding-left: 2rem;
    }

    .contact-title {
        font-size: 2.75rem;
    }

    .contact-visual {
        margin-top: 1rem;
    }

    .contact-right {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 1.5rem !important;
    }

    .header.scrolled {
        padding: 0.75rem 1.5rem;
    }

    /* Hide desktop nav on mobile */
    .desktop-nav {
        display: none;
    }

    .header-controls {
        gap: 0.75rem;
    }

    .lang-btn,
    .menu-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    /* Mobile Menu Styles */
    .menu-content {
        padding: 3rem;
        /* align-items: center; */
        /* text-align: center; */
    }

    .menu-header {
        margin-bottom: 3rem;
    }

    .home-btn {
        padding: 0.625rem 1.5rem;
        font-size: 1rem;
    }

    .close-btn {
        width: 45px;
        height: 45px;
    }

    .menu-nav {
        gap: 1.5rem;
        /* align-items: center; */
    }

    .menu-link {
        font-size: 2rem;
    }

    .menu-link:hover {
        transform: translateX(0) scale(1.05);
    }

    .menu-logo {
        margin-top: 3rem;
        /* align-self: center; */
    }

    .scroll-down {
        bottom: 2rem;
    }

    /* Partners Section Mobile */
    .partners-section {
        padding: 5rem 0rem;
    }

    .partners-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .partners-track {
        gap: 2rem;
    }

    .partner-item {
        width: 250px !important;
        height: 200px !important;
        padding: 1rem 4rem !important;
    }

    .logo {
        max-width: 300px;
    }

    /* Bridging Section Mobile */
    .bridging-section {
        padding: 4rem 0;
    }

    .bridging-container {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 1.5rem;
        display: flex;
        flex-direction: column-reverse;
        /* Reorder: Image on top, Text below */
    }

    .bridging-section::before {
        top: unset;
        transform: translateY(-0%);
        height: 70%;
        bottom: 0;
    }

    .bridging-title {
        font-size: 1.75rem;
    }

    .bridging-text {
        font-size: 1rem;
    }

    .bridging-image img {
        margin: 0 0 -2rem 0;
        /* Adjust overlap */
        max-height: 48vh;
        object-fit: contain;
        width: 100%;
    }

    .bridging-image .mobile-flag {
        display: block;
    }

    .bridging-image .desktop-flag {
        display: none;
    }

    /* Services Section Mobile */
    .services-section {
        margin-top: 0;
        /* padding: 3rem 1.5rem; */
    }

    .services-intro {
        flex-direction: column;
        margin-bottom: 3rem;
    }

    .services-description {
        font-size: 1.8rem;
        padding-right: 0;
    }

    .brazil-map {
        width: 100px;
    }

    .mission-section {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 3rem;
        padding: 4rem 1.5rem;
    }

    .mission-section::before {
        top: 66%;
        transform: translateY(-50%);
        height: 560px;
    }

    .mission-image img {
        margin: 0 0 -3rem;
        max-height: 48vh;
        object-fit: contain;
    }

    .bridging-image img {
        margin: 0 0 -3rem;
        max-height: 48vh;
        object-fit: contain;
    }

    .mission-content {
        padding: 3.5rem 0 0;
    }

    .bridging-content {
        padding: 3.5rem 0 0;
    }

    .mission-title {
        font-size: 1.5rem;
    }

    .mission-text {
        font-size: 0.875rem;
    }

    .advantages-section {
        padding: 4rem 1.5rem;
    }

    .advantages-title {
        font-size: 2.25rem;
        margin-bottom: 2rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .advantage-card {
        padding: 1.75rem;
        border-radius: 12px;
    }

    .advantage-title {
        font-size: 1rem;
    }

    .advantage-description {
        font-size: 1rem;
    }

    /* Team Section Mobile */
    .team-section {
        padding: 3rem 1.5rem;
    }

    .team-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .team-photos {
        gap: 0.5rem;
        padding: 1rem 0;
    }

    .team-photo:nth-child(1),
    .team-photo:nth-child(7) {
        width: 60px;
        height: 80px;
    }

    .team-photo:nth-child(2),
    .team-photo:nth-child(6) {
        width: 80px;
        height: 100px;
    }

    .team-photo:nth-child(3),
    .team-photo:nth-child(5) {
        width: 100px;
        height: 120px;
    }

    .team-photo:nth-child(4),
    .team-photo.active {
        width: 120px;
        height: 150px;
    }

    .team-member-name {
        font-size: 1.5rem;
    }

    .team-member-position {
        font-size: 1rem;
    }

    /* Why Partner Mobile */
    .why-partner-section {
        padding: 3rem 1.5rem;
    }

    .why-partner-title {
        font-size: 1.75rem;
    }

    .why-partner-intro {
        font-size: 1rem;
    }

    .accordion-header {
        padding: 1.25rem 1.5rem;
    }

    .accordion-title {
        font-size: 1rem;
        padding-right: 1rem;
    }

    .accordion-body {
        padding: 1.5rem;
    }

    .accordion-body p {
        font-size: 0.875rem;
    }

    /* Brasil Section Mobile */
    .brasil-section {
        padding: 0;
        --brasil-cutout-dy: 0px;
        --brasil-cutout-cy-mul: 0.5;
        --brasil-cutout-r-mul: 0.94;
    }

    .brasil-container {
        /* padding: 0 1.5rem; */
    }

    .brasil-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 0;
        padding: 2.75rem 2rem 2rem;
    }

    .brasil-header-left,
    .brasil-header-right {
        padding: 0;
        border: none;
    }

    .brasil-header-left {
        border-right: none;
    }

    .brasil-title {
        font-size: 1.75rem;
    }

    .brasil-description {
        font-size: 0.9375rem;
    }

    .brasil-content {
        grid-template-columns: 1fr;
        gap: 0;
        padding-bottom: 180px;
    }

    .brasil-left,
    .brasil-right {
        padding: 2.5rem 0;
        border: none;
    }

    .brasil-left {
        border-bottom: none;
    }

    .stat-value {
        font-size: 2rem;
    }

    .stat-card--exports {
        padding: 0 0 2rem;
    }

    .brasil-earth-wrapper {
        transform: translateX(0);
        max-width: 100%;
        display: flex;
        justify-content: center;
    }

    .earth-globe {
        width: 400px;
        height: 400px;
    }

    .brasil-text-wrapper {
        padding: 0 1.5rem;
    }

    .brasil-text-svg {
        height: 200px;
    }

    .brasil-visual {
        margin-bottom: -120px;
    }

    .brasil-footer-text {
        padding: 2.5rem 1.5rem 3rem;
    }

    /* Testimonials Mobile */
    .testimonials-section {
        padding: 3rem 1.5rem;
    }

    .testimonials-content {
        flex-direction: column;
        gap: 2rem;
    }

    .testimonials-left {
        width: 100%;
        position: static;
        flex-direction: column;
    }

    .testimonials-left .logo-icon {
        width: 60px;
        height: 60px;
        margin-top: 0;
        margin-bottom: 1.5rem;
        order: 1;
    }

    .testimonials-main-title {
        font-size: 2rem;
        order: 2;
    }

    .testimonials-right {
        width: 100%;
        padding-bottom: 3rem;
    }

    .testimonials-swiper {
        padding: 1rem 0;
    }

    .testimonials-swiper .swiper-slide {
        width: 100%;
    }

    .testimonial-slide {
        padding: 2.5rem 2rem;
    }

    .quote-icon {
        width: 80px;
        height: 60px;
    }

    .testimonials-nav {
        position: static;
        justify-content: center;
        margin-top: 2rem;
        margin-bottom: 0;
        right: auto;
        width: auto;
    }

    .nav-btn {
        width: 50px;
        height: 50px;
    }

    .nav-btn svg {
        width: 20px;
        height: 20px;
    }

    /* Solutions Section Mobile */
    .solutions-section {
        padding: 3rem 1.5rem;
    }

    .solutions-title {
        font-size: 1.75rem;
    }

    .solutions-grid {
        gap: 2rem;
    }

    .solution-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 0;
    }

    .pain-point,
    .solution-point {
        padding: 1.25rem;
    }

    .point-title {
        font-size: 1.125rem;
    }

    .point-description {
        font-size: 0.875rem;
    }

    /* Case Study Mobile */
    .case-study-section {
        /* padding: 3rem 1.5rem; */
    }

    .case-study-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .case-title {
        font-size: 1.75rem;
    }

    .expertise-header {
        padding: 1.5rem;
    }

    .expertise-card {
        padding: 2rem 1.5rem;
    }

    /* iGaming Mobile */
    .igaming-section {
        padding: 3rem 1.5rem;
    }

    .igaming-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .igaming-header-right {
        text-align: center;
    }

    .igaming-title {
        font-size: 1.75rem;
    }

    .igaming-steps {
        gap: 1.5rem;
    }

    .step-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 2.5rem 2rem;
    }

    .step-number {
        font-size: 4rem;
        width: auto;
    }

    /* Insights Mobile */
    .insights-section {
        padding: 3rem 1.5rem;
    }

    .insights-title {
        font-size: 1.75rem;
    }

    .insight-card {
        min-width: 100%;
    }

    .insight-image {
        height: 220px;
    }

    .insight-content {
        padding: 1.5rem;
    }

    .insight-card-title {
        font-size: 1.25rem;
    }

    .insights-controls {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .insights-nav-btns {
        gap: 1.5rem;
    }

    .see-all-btn {
        width: 100%;
    }

    /* Market Insight Mobile */
    .market-insight-section {
        padding: 3rem 1.5rem;
    }

    .market-insight-card {
        min-width: 100%;
    }

    .market-insight-image {
        height: 220px;
    }

    .market-insight-content {
        padding: 1.5rem;
    }

    /* CTA Mobile */
    .cta-section {
        padding: 2rem 1.5rem 0;
    }

    .cta-container {
        padding: 3rem 2rem;
        transform: translateY(25%);
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }

    .cta-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        width: 160px;
        height: 160px;
    }

    .cta-button svg {
        width: 65px;
        height: 78px;
    }

    /* Footer Mobile */
    .footer-content {
        padding: calc(3rem + 120px) 1.5rem 2rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-tagline {
        font-size: 1.25rem;
    }

    .footer-social {
        gap: 1rem;
    }

    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-column {
        text-align: left;
    }

    .footer-column-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .footer-links,
    .footer-contact {
        gap: 0.5rem;
    }

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

    .footer-bottom {
        grid-template-columns: 1fr;
        /* flex-direction: column; */
        gap: 1rem;
        align-items: start;
        font-size: 0.875rem;
    }

    /* Contact Section Mobile */
    .contact-section {
        padding: 6rem 0 3rem 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-left {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    .contact-title {
        font-size: 2.25rem;
        text-align: left;
    }

    .contact-visual {
        margin-top: 1rem;
    }

    .contact-image {
        max-width: 100%;
    }

    .contact-right {
        padding: 2.5rem 1.5rem;
    }

    .form-submit {
        width: 100%;
        align-self: stretch;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 0.75rem;
    }

    .logo svg {
        width: 32px;
        height: 32px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.875rem;
    }

    .menu-link {
        font-size: 1.75rem;
    }

    .lang-btn img {
        width: 20px;
        height: 10px;
    }

    /* Partners Section Small Mobile */
    /* .partners-section {
        padding: 2.5rem 1rem;
    } */

    .partners-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .partners-track {
        gap: 1.5rem;
    }

    /* .partner-item {
        width: 120px;
        height: 60px;
    } */

    /* Bridging Section Small Mobile */
    .bridging-section {
        padding: 2.5rem 1rem;
    }

    .bridging-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .bridging-text {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .bridging-container {
        gap: 2rem;
    }

    /* Brasil Section Small Mobile */
    .brasil-section {
        padding: 0;
    }

    .brasil-container {
        padding: 0 1rem;
    }

    .brasil-title {
        font-size: 1.5rem;
    }

    .brasil-description {
        font-size: 0.875rem;
    }

    .brasil-content {
        padding-bottom: 150px;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .brasil-text-wrapper {
        padding: 0 1rem;
    }

    .brasil-text-svg {
        height: 180px;
    }

    .brasil-visual {
        margin-bottom: -100px;
    }

    .earth-globe {
        width: 280px;
        height: 280px;
    }

    /* Testimonials Small Mobile */
    .testimonials-section {
        padding: 2.5rem 1rem;
    }

    .testimonials-header .testimonials-title {
        font-size: 1.5rem;
    }

    .testimonials-main-title {
        font-size: 1.75rem;
    }

    .testimonial-slide {
        padding: 2rem 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .author-name {
        font-size: 1rem;
    }

    .author-company {
        font-size: 0.875rem;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
    }

    .nav-btn svg {
        width: 16px;
        height: 16px;
    }

    /* Case Study Small Mobile */
    .case-study-section {
        padding: 2.5rem 1rem;
    }

    .case-title {
        font-size: 1.5rem;
    }

    .logo-icon svg {
        width: 45px;
        height: 45px;
    }

    .expertise-header {
        padding: 1.25rem;
    }

    .expertise-title {
        font-size: 1.25rem;
    }

    .expertise-card {
        padding: 1.5rem 1.25rem;
    }

    .expertise-card-title {
        font-size: 1.25rem;
    }

    /* iGaming Small Mobile */
    .igaming-section {
        padding: 2.5rem 1rem;
    }

    .igaming-header {
        margin-bottom: 2.5rem;
        gap: 1rem;
    }

    .igaming-title {
        font-size: 1.5rem;
    }

    .step-card {
        padding: 2rem 1.5rem;
        gap: 1.25rem;
    }

    .step-number {
        font-size: 3.5rem;
        margin-bottom: 0;
    }

    .step-title {
        font-size: 1.25rem;
    }

    /* Insights Small Mobile */
    .insights-section {
        padding: 2.5rem 1rem;
    }

    .insights-title {
        font-size: 1.5rem;
    }

    .insight-image {
        height: 200px;
    }

    .insight-content {
        padding: 1.25rem;
    }

    .insight-card-title {
        font-size: 1.25rem;
    }

    .insight-description {
        font-size: 0.875rem;
    }

    /* Market Insight Small Mobile */
    .market-insight-section {
        padding: 2.5rem 1rem;
    }

    .market-insight-image {
        height: 200px;
    }

    .market-insight-content {
        padding: 1.25rem;
    }

    /* CTA Small Mobile */
    .cta-section {
        padding: 1.5rem 1rem 0;
    }

    .cta-container {
        padding: 1.5rem 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        transform: translateY(30%);
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-subtitle {
        font-size: 0.8125rem;
    }

    .cta-button svg {
        width: 45px;
        height: 45px;
    }

    /* Footer Small Mobile */
    .footer-content {
        padding: calc(2.5rem + 120px) 1rem 1.25rem;
    }

    .footer-brand {
        text-align: center;
        align-items: center;
    }

    .footer-social {
        gap: 0.875rem;
    }

    .social-link {
        width: 55px;
        height: 55px;
    }

    .footer-tagline {
        font-size: 0.8125rem;
    }

    .footer-links-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column-title {
        font-size: 1rem;
    }

    .footer-links a,
    .footer-contact li {
        font-size: 0.8125rem;
    }

    .footer-bottom {
        font-size: 0.75rem;
    }

    /* Contact Section Small Mobile */
    .contact-section {
        padding: 5rem 0 2.5rem 0;
    }

    .contact-left {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .contact-title {
        font-size: 1.75rem;
    }

    .contact-visual {
        margin-top: 0.75rem;
    }

    .contact-right {
        padding: 2rem 1.25rem;
    }

    .accordion-header {
        padding: 1.5rem 1.5rem;
    }

    .accordion-toggle {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .accordion-toggle svg {
        width: 18px;
        height: 18px;
    }

    .accordion-body {
        padding: 1.5rem 1.5rem 2rem 1.5rem;
    }

    .form-input,
    .form-textarea {
        font-size: 0.9375rem;
    }

    .form-submit {
        width: 100%;
        padding: 0.75rem 2rem;
    }

    .visual-grid {
        gap: 0.5rem;
    }
}

.solution-point {
    padding: 1rem;
}

/* Page Content Styles */
.page-content {
    min-height: 100vh;
    padding-top: 120px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d5f4f 100%);
}

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

.content-container h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: white;
}

.content-container p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .page-content {
        padding-top: 100px;
    }

    .content-container {
        padding: 2rem 1.5rem;
    }

    .content-container h1 {
        font-size: 2rem;
    }

    .content-container p {
        font-size: 1rem;
    }
}

.cursor-pointer {
    cursor: pointer;
}

.sub-text {
    font-size: 24px;
    font-weight: 400;
    line-height: 150%;
}

.mini-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.title {
    font-weight: 700;
    font-size: 60px;
    line-height: 120%;
}

.box1 {
    display: flex;
    justify-content: center;
    position: relative;
    margin: 80px 0;
}

.header {
    width: 100%;
    padding: 68px 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    justify-items: center;
}

.header .menu-box {
    display: flex;
    gap: 80px;
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
}

.menu-box .el-menu .el-menu-item {
    position: relative;
}

.el-menu.el-menu--horizontal {
    border: none;
}

.menu-item {
    position: relative;
    z-index: 1;
}

.el-menu--horizontal>.el-menu-item,
.el-menu--horizontal>.el-submenu .el-submenu__title,
.el-menu-item,
.menu-item {
    font-family: 'Raleway';
    font-weight: 600;
    font-size: 20px !important;
    color: #000000 !important;
    position: relative;
}

.el-menu--horizontal>.el-submenu .el-submenu__title {
    padding-top: 1.6px;
}

.pop-menu-item {
    position: absolute !important;
    top: 50px !important;
    left: 55px !important;
}

.pop-menu-item .el-menu-item {
    line-height: 50px !important;
    height: 50px !important;
}

.menu-box .vector-1 {
    position: absolute;
    width: 100%;
    height: calc(100% - 24px);
    left: 0px;
    bottom: 12px;
}

.el-menu--horizontal>.el-menu-item.is-active,
.el-menu--horizontal>.el-submenu.is-active .el-submenu__title {
    border: none;
}

.header .menu-box div {
    align-items: center;
}

.btn {
    cursor: pointer;
}

.title1 {
    position: relative;
    width: 900px;
    font-style: normal;
    font-weight: 700;
    font-size: 92px;
    line-height: 103%;
    text-align: center;
}

.box1 .circle {
    background-image: url(../images/vector-1.png);
    width: 100%;
    background-size: 100% 100%;
}

.box1 .vector {
    position: absolute;
    width: 423px;
    height: 75px;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.box1-center {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.box1 .box1-content {
    width: 680px;
    text-align: center;
    margin: 58px 0;
}

.box1 .btn1 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 50px;
    background-color: #d3f985;
    border-radius: 74px;
    font-weight: 700;
    font-size: 20px;
    color: #000000;
}

.box1 .box1-content2 {
    width: 795px;
    /* height: 27px; */
    font-weight: 600;
    text-align: center;
    color: #1D1E1C;
    margin: 80px 0 45px 0;
}

.box1 .logo-box {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 48px;
    width: 1135px;
    height: 19px;
}

.box1 .logo-box img {
    height: 100%;
}

.img1,
.img2 {
    height: 107px;
    width: 104px;
    position: absolute;
}

.img1 {
    left: 160px;
    top: 150px;
}

.img2 {
    top: 0;
    right: 200px;
}

.box2 {
    padding: 0 85px;
    margin-top: 150px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.box2 .box2-title {
    color: #252432;
    width: 343px;
    background-image: url(../images/vector-2.png);
    background-size: 100% 100%;
    white-space: nowrap;
    text-align: center;
}

.box1 .box-left {
    padding-top: 28px;
}

.box2 .bg {
    position: absolute;
    width: 1263px;
    height: 722.12px;
    left: -160px;
    top: 0px;
    z-index: -1;
}

.box2-bottom-text {
    width: calc(100% - 200px)
}

.box2-left {
    flex: 1;
}

.box2 .box2-content {
    width: 100%;
    margin-top: 50px;
}

.box2 .box2-right {
    position: relative;
    flex: 1;
    text-align: center;
}

.box2 .box2-right img {
    width: 541px;
}

.icon1,
.icon2 {
    height: 60.26px;
    width: auto;
}

.box3 {
    padding: 0px 85px;
    position: relative;
    margin-top: 205px;
}

.box3 .line {
    width: 5px;
    height: 735px;
    position: absolute;
    left: 105px;
    background-color: #4E47FF;
    z-index: -1;
    top: -42px;
}

.box3 .content {
    display: flex;
    position: relative;
}

.box3 .content-center {
    padding: 70px 0;
}

.box3 .content .icon3 {
    height: 41px;
    width: 118px;
    margin-right: 28px;
    margin-top: 15px;
    background-image: url(../images/icon3.png);
    background-size: contain;
}

.box3 .content .text {
    width: 951px;
}

.box3 .content::after {
    content: "";
    position: absolute;
    top: -35px;
    width: 5px;
    height: 100%;
    background: #4E47FF;
    z-index: -1;
    left: 19px;
}

.box3 .title {
    margin-bottom: 30px;
}

.box3 .content .text-item::after {
    content: "|";
    margin: 0 10px;
}

.box3 .content .text-item:nth-last-of-type(1):after {
    content: '';
}

.box4 {
    margin-top: 200px;
    margin-bottom: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 85px;
}

.box4 .vector-3 {
    position: absolute;
    width: 496px;
    right: 0;
    z-index: -1;
}

.box4 .box4-title {
    position: relative;
    width: 960px;
    color: #252432;
    margin-bottom: 50px;
    text-align: center;
}

.box4 .box4-title .circle,
.box4 .circles {
    background-image: url(../images/vector-3.png);
    background-size: 100% 100%;
}

.box4 .img-box {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 120px;
}

.box4 .img-box .content {
    height: 569.12px;
    width: 390px;
    background-size: cover;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.box4 .img-box .box4-content2 {
    background-image: url(../images/img6.png);
}

.box4 .img-box .box4-content3 {
    background-image: url(../images/img7.png);
}

.box4 .img-box .box4-content4 {
    background-image: url(../images/img8.png);
}

.box4 .img-box .box4-content5 {
    background-image: url(../images/img9.png);
    width: calc(50% - 25px);
    height: 569.13px;
}

.box4 .img-box .box4-content6 {
    background-image: url(../images/img10.png);
    width: calc(50% - 40px);
    height: 569.13px;
}

.box4 .img-box .box4-content5 .title,
.box4 .img-box .box4-content6 .title {
    height: 223px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.box4 .img-box .title {
    background: rgba(123, 123, 123, 0.3);
    border-radius: 27px;
    color: #FFFFFF;
    padding: 30px;
    font-weight: 700;
    font-size: 25px;
    line-height: 120%;
    width: 100%;
    position: absolute;
    bottom: 0;
}

.box4 .img-box .text {
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    margin-top: 10px;
}

.box5 {
    align-items: center;
    position: relative;
    display: flex;
    flex-direction: column;
}

.box5 .vector-4 {
    position: absolute;
    left: 319px;
    height: 100%;
    z-index: -1;
}

.box5 .box5-title {
    position: relative;
    width: 1137.48px;
    text-align: center;
    /* height: 72px; */
}

.box5-bottom {
    display: flex;
    margin-top: 80px;
    padding: 0 85px;
}

.box5-bottom .img11 {
    width: 600px;
    margin-right: 85px;
}

.box5-title .circle {
    background-image: url(../images/vector-4.png);
    background-size: 100% 100%;
}

.box6 {
    position: relative;
    padding: 0 85px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 250px;
}

.box6 .box6-bottom {
    display: flex;
}

.box6 .box6-title {
    position: relative;
    text-align: center;
    margin-bottom: 110px;
    /* margin: 130px 0 110px 0; */
}

.box6 .vector-4 {
    position: absolute;
    width: 813px;
    height: 66px;
    right: 40px;
    z-index: -1;
}

.box6 .box6-bottom .img12 {
    width: 760px;
}

.box7 {
    margin: 105px 0;
    padding: 0 85px;
}

.box7 .box7-title {
    width: 862px;
    position: relative;
    text-align: left;
}

.box7 .box7-content1 {
    font-weight: 600;
    font-size: 32px;
    line-height: 150%;
    color: #4E47FF;
    margin-top: 40px;
}

.box7 .vector-4 {
    position: absolute;
    left: -20px;
    height: 52px;
    width: calc(100% + 40px);
    bottom: 0;
    z-index: -1;
}

.box7 .box7-bottom {
    background-image: url('../images/bg2.png');
    background-size: 100% 100%;
    width: 1176px;
    height: 1226px;
    display: flex;
    /* align-items: center; */
    padding-top: 100px;
    gap: 100px;
    justify-content: center;
}

.box7 .box7-box {
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
}

.box7 .box7-bottom-box {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.box7 .box7-bottom-box:nth-child(1) {
    margin-top: 50px;
}

.box7 .box7-box .black-box {
    background: #000000;
    width: 331px;
    border-radius: 22px;
    padding: 40px;
    height: 346px;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
}

.box7 .box7-box .black-box .black-title {
    font-weight: 700;
    color: #D3F985;
    margin-bottom: 25px;
}

.box7 .box7-box img {
    width: 64px;
}

.box8 {
    position: relative;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box8 .box8-titles {
    width: 837px;
    position: relative;
    text-align: center;
}

.box8 .title .vector-5 {
    width: 486px;
    height: 52px;
    position: absolute;
    bottom: 0;
    right: 100px;
    z-index: -1;
}

.box8 .title .vector-4 {
    width: 356px;
    height: 90px;
    position: absolute;
    bottom: -7px;
    right: 260px;
    z-index: -1;
}

.box8-box .box8-title {
    font-weight: 700;
    font-size: 24px;
    width: 228px;
    height: 220px;
    position: relative;
    text-align: center;
}

.box8-box .box8-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    width: 285px;
    text-align: center;
}

.box8-box .title-bottom {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
}

.box8-box {
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box8 .box,
.box8-box {
    height: 443px;
    position: relative;
}

.box8 .box8-box2,
.box8-box2 .box8-box {
    height: 300px;
}

.box8-box2 .box8-text {
    height: 230px;
}

.box8 .bg {
    position: absolute;
    width: 1263px;
    height: 722.12px;
    bottom: 90px;
    z-index: -1;
    right: 0;
}

.box8-box2 .box8-box::after {
    bottom: 31px;
}

.box8 .box {
    width: 100%;
    display: flex;
    margin-top: 140px;
}

.box8 .title-top {
    height: 85px;
    margin-bottom: 20px;
}

.box8-box::after {
    content: "";
    position: absolute;
    bottom: 220px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #4E47FF;
    z-index: -1;
}

.box8-box .icon8 {
    margin: 14px 0;
    width: 41px;
}

.box8-box .icon-bottom {
    transform: rotate(180deg);
}

.box8-content {
    padding: 0 85px;
    margin-top: 95px;
    text-align: center;
    width: 843px;
}

.box9 {
    margin: 120px 0;
    padding: 0 85px;
}

.box9 .title11 {
    width: 495px;
    position: relative;
}

.box9 .vector-5 {
    height: 52px;
    width: 192px;
    position: absolute;
    right: 28px;
    z-index: -1;
    bottom: 10px;
}

.box9-content {
    width: 100%;
    position: relative;
    margin-top: 30px;
}

.box9-content .bg3 {
    position: absolute;
    right: -30px;
    top: 0;
    height: 722px;
}

.box9-box {
    display: flex;
    padding: 175px 0 80px 0;
    gap: 40px;
}

.box9-box .box9-avartor {
    text-align: center;
    width: 234px;
    font-weight: 700;
    font-size: 24px;
    line-height: 165%;
}

.box9-box .box9-avartor .position {
    font-weight: 500;
    font-size: 16px;
    line-height: 165%;
    width: 234px;
}

.box9-box .talk-box {
    /* background-image: url('../images/box1.png'); */
    /* background-size: 100% 100%; */
    background-color: #000000;
    border-radius: 0 30px 30px 30px;
    width: 750px;
}

.box9-box .talk-box,
.box9-box .talk-box2 {
    color: #fff;
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    padding: 30px 50px;
    position: relative;
    align-items: center;
    display: flex;
}

.box9-box .talk-box2 {
    /* background-image: url('../images/box2.png');
    background-size: 100% 100%; */
    background-color: #4E47FF;
    border-radius: 30px 0 30px 30px;
    width: 543px;
}

.box9-box .box1-img {
    position: absolute;
    width: 60px;
    z-index: 1;
    left: 30px;
    top: -24px;
}

.box9-box .box2-img {
    position: absolute;
    width: 60px;
    z-index: 1;
    right: -20px;
    bottom: 25px;
}

.box9-right-box {
    justify-content: end;
    padding-top: 0px;
}

.box9-box .avartor {
    width: 183px;
}

.box10 {
    display: flex;
    flex-direction: column;
    justify-items: center;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    gap: 40px;
    padding: 100px 85px 140px 85px;
    border-top: 2px solid #D6DDED;
    background-image: url(../images/bg4.png);
    background-size: 100% 100%;
    position: relative;
}

.box10 .btn {
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    color: #FFFFFF;
    background: #4E47FF;
    border-radius: 96px;
    padding: 20px 50px;
}

.box10 .contact {
    display: flex;
    background: #000000;
    border-radius: 40px;
    color: #D3F985;
    gap: 80px;
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    padding: 80px 60px;
    align-items: center;
    width: 100%;
    justify-content: space-around;
    margin-top: 150px;
}

.box10 .contact .contact-box .title {
    font-weight: 600;
    font-size: 18px;
    color: #D3F985;
    margin-bottom: 15px;
    text-align: left;
}

.contact-title {
    text-align: center;
    /* width: 144px; */
}

.contact-bottom {
    display: flex;
    gap: 80px;
    justify-items: center;
    align-items: center;
}

.box10 .contact-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #fff;
}

.box10 .contact .logo {
    display: flex;
    gap: 15px;
}

.box10 .contact .logo img {
    height: 62px;
}

.box10 .box10-bottom {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.box10 .box10-bottom div {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.box10 .box10-bottom svg {
    margin-right: 8px;
}

.box10 .bg5 {
    position: absolute;
    opacity: 0.1;
    left: -0px;
    top: 0px;
    z-index: -1;
}

.box11 {
    padding: 0 85px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-top: 100px;
}

.box11-content {
    text-align: center;
}

.box11 .vector-5 {
    position: absolute;
    width: 337px;
    height: 81px;
    left: 528px;
    top: 0;
    z-index: -1;
}

.box11-content {
    width: 843px;
    margin: 50px 0;
}

.box11-img {
    height: 40px;
    margin-bottom: 40px;
}

.box11-box {
    width: 100%;
    background-color: #4E47FF;
    border-radius: 40px;
    padding: 80px 100px;
    display: flex;
    gap: 50px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.box11-text {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
}

.box11-subTitle {
    font-weight: 900;
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 20px;
}

.box11-bg6 {
    position: absolute;
    width: 480px;
    /* height: 341.02px; */
    top: -30px;
    left: -140px;
    mix-blend-mode: color-burn;
    /* transform: matrix(-0.71, -0.71, -0.71, 0.71, 0, 0); */
}

.box11-bg7 {
    position: absolute;
    width: 480px;
    right: -140px;
    top: -30px;
    mix-blend-mode: color-burn;
}

.box11-bottom {
    display: flex;
    gap: 80px;
    padding: 90px;
    text-align: left;
}

.box11-bottom .bottom-right,
.box11-bottom .bottom-content {
    flex: 1;
}

.box11-bottom .circle {
    width: 20px;
    height: 20px;
    background-color: #4E47FF;
    border-radius: 5px;
    display: inline-block;
    margin-right: 10px;
}

.box12 {
    margin-top: 200px;
    padding: 0 85px;
    justify-items: center;
}

.box12-titles {
    position: relative;
}

.box12 .vector-5 {
    position: absolute;
    width: 337px;
    height: 81px;
    left: 0;
    top: 0;
    z-index: -1;
}

.box12-content {
    width: 843px;
    margin: 50px 0;
}

.box12-box {
    height: 1226px;
    width: 100%;
    background-image: url(../images/bg2.png);
    background-size: cover;
    text-align: center;
    position: relative;
    margin-top: 265px;
}

.box12-box-item {
    width: 208px;
    position: absolute;
}

.box12 .box12-box .box12-box-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    margin-bottom: 10px;
}

.box12 .icon13 {
    height: 118px;
    margin-top: 35px;
}

.box12-box-item:nth-child(1) {
    left: 238px;
    top: -110px;
}

.box12-box-item:nth-child(2) {
    left: 77px;
    top: 395px;
}

.box12-box-item:nth-child(3) {
    left: 538px;
    top: 258px;
}

.box12-box-item:nth-child(4) {
    left: 1000px;
    top: 106px;
}

.box13 {
    text-align: center;
    padding: 0 190px;
    margin: 195px 0 200px 0;
}

.box13-title {
    position: relative;
}

.box13 .vector-2 {
    position: absolute;
    width: 357px;
    height: 86px;
    left: 331px;
    z-index: -1;
    bottom: -5px;
}

.box13-content {
    flex: 1;
    text-align: left;
}

.box13-item {
    display: flex;
    gap: 100px;
    position: relative;
}

.box13 .img13 {
    width: 353px;
}

.box13 .img14 {
    height: 373px;
}

.box13-box {
    width: 100%;
    margin-top: 170px;
}

.box13-content:nth-child(2) {
    display: flex;
    align-items: end;
    padding-bottom: 40px;
    text-align: right;

}

.box13 .icon1 {
    position: absolute;
    right: 61px;
    bottom: -100px;
}

.box13 .icon2 {
    position: absolute;
    left: 190px;
    top: -81px;
}

.terms-box {
    padding: 0px 200px;
    width: 100%;
    font-weight: 700;
    font-size: 28px;
    line-height: 150%;
}

.terms-wrapper .box10 {
    border-top: none;
    padding-top: 200px;
}

.terms-content .list {
    display: list-item;
    margin-left: 36px;
}

.terms-box .circle {
    width: 5px;
    height: 5px;
    background-color: #000000;
    border-radius: 50%;
}

.terms-title {
    margin-top: 40px;
    margin-bottom: 20px;
}

.terms-box .title {
    background-image: url(../images/vector-2.png);
    background-size: 100% 100%;
    display: inline-block;
    margin-bottom: 80px;
    margin-top: 100px;
}

@media screen and (max-width: 600px) {

    /* 基础文本类 */
    .sub-text {
        font-size: 54px;
    }

    .mini-text {
        font-size: 42px;
    }

    .title {
        font-size: 144px;
    }

    .title1 {
        font-size: 122px;
        width: 710px;
        font-size: 135px;
    }

    .title1 .vector {
        width: 100%;
        height: 128px;
        bottom: 5px;
    }


    /* 导航菜单 */
    .header .menu-box {
        font-size: 50px;
        /* 原20px+30px */
        gap: 110px;
        /* 原80px+30px */
    }

    /* 按钮组件 */
    .box1 .btn1 {
        font-size: 50px;
        padding: 60px 100px;
        border-radius: 85px;
    }

    .img1,
    .img2 {
        scale: 1.5;
    }

    .img1 {
        top: 550px;
    }

    .box1 .box1-content {
        width: 900px;
        margin: 150px 0;
    }

    .box1 {
        margin: 200px 0;
    }

    .box1 .logo-box {
        height: 63px;
        justify-content: space-between;
        width: 100%;
    }

    .box1 .logo-box img:nth-child(2),
    .box1 .logo-box img:nth-child(3) {
        display: none;
    }

    .box1-center {
        width: 100%;
    }

    .box1 .box1-content2 {
        font-size: 57px;
        width: 900px;
        margin: 170px 0 110px 0;
    }

    .box1,
    .box2,
    /* .box3, */
    .box4,
    .box5,
    .box7,
    .box6,
    /* .box8, */
    .box9,
    .box10 {
        flex-direction: column;
        padding: 0 187px;
        width: 100%;
        margin-top: 300px;
    }

    .box8 {
        padding: 0;
    }

    .box2 .box2-right img {
        width: 100%;
        margin: 120px 0 100px 0;

    }


    .box2 .box2-title {
        width: 800px;
    }

    .box3 {
        padding: 0;
    }

    .box3 .content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-bottom: 80px;
        padding: 70px 0;
    }

    .box3 .content .icon3 {
        transform: rotate(90deg);
        width: 236px;
        height: 82px;
        margin-bottom: 120px;
    }

    .box3 .content .text-item::after {
        content: '';
    }

    .box3 .content .text-item {
        display: block;
        margin: 20px 0;
    }

    .box3 .title {
        margin-bottom: 80px;
    }

    .box3 .content::after {
        width: 100%;
        height: 9px;
        top: 45px;
    }

    .box4 .img-box .title {
        font-size: 65px;
        padding: 120px 100px;
        height: auto !important;
    }

    .box4 .img-box {
        flex-direction: row;
        gap: 70px;
        width: 100%;
    }

    .box4 .box4-title {
        text-align: left;
        width: 100%;
    }

    .box4 .box4-title .circle {
        text-wrap: wrap;
    }

    .box4 .circle-box::after {
        content: "";
        width: 251px;
        position: absolute;
        background-image: url(../images/vector-4.png);
        background-size: 100% 100%;
        height: 127px;
        left: 314px;
        bottom: 203px;
        z-index: -1;
    }

    .box4 .img-box .content {
        width: 100%;
        height: 1500px;
        border-radius: 80px;
        /* overflow: hidden; */
    }

    .box4 .img-box .text {
        font-size: 55px;
        margin-top: 80px;
    }

    .box4 .vector-3 {
        left: -30px;
        width: 890px;
        bottom: 8px;
    }

    .box5-bottom,
    .box6 .box6-bottom,
    .box7 .box7-bottom {
        flex-direction: column;
        gap: 180px;
        height: auto;
        padding: 0;
        width: 100%;
    }

    .box5-bottom .img11,
    .box6 .box6-bottom .img12 {
        width: 100%;
        height: auto;
    }

    .box5 .title7 {
        text-align: center;
    }

    .box5 .box5-title {
        text-align: center;
    }

    .box5 .vector-4 {
        width: 100%;
        height: 176px;
        left: 0;
        bottom: 3px;
    }

    .box6 .box6-title {
        width: calc(100% + 100px);
        margin-left: -50px;
    }

    .box6 .vector-4 {
        width: 100%;
        height: 180px;
    }

    .box7 .box7-content1 {
        font-size: 60px;
        margin-top: 100px;
    }

    .box7 .box7-title {
        width: 100%;
    }

    .box7 .circle2-box::after {
        content: "";
        width: 906px;
        position: absolute;
        background-image: url(../images/vector-4.png);
        background-size: 100% 100%;
        height: 130px;
        right: 165px;
        bottom: 186px;
        z-index: -1;
    }

    .box7 .circle-box::after {
        content: "";
        width: 653px;
        position: absolute;
        background-image: url(../images/vector-4.png);
        background-size: 100% 100%;
        height: 130px;
        right: 68px;
        bottom: 368px;
        z-index: -1;
    }

    .box7 .vector-4 {
        height: 130px;
        width: 545px;
        left: -30px;
        bottom: 10px;
    }

    .box7 .box7-box .black-box .black-title {
        margin-bottom: 100px;
    }

    .box7 .box7-box .black-box {
        width: 100%;
        font-size: 60px;
        height: auto;
        padding: 150px 120px;
    }

    .box7 .box7-title {
        width: 100%;
    }

    .box8 .box8-titles {
        width: 100%;
        text-align: left;
        padding: 0 200px;
    }

    .box8 .circle-box {
        position: relative;
    }

    .box8 .circle-box::after {
        content: "";
        width: 673px;
        position: absolute;
        background-image: url(../images/vector-4.png);
        background-size: 100% 100%;
        height: 140px;
        right: -20px;
        bottom: 0;
        z-index: -1;
    }

    .box8-box2 .box8-box {
        height: 820px;
    }

    .box8-box2 .box8-box::after {
        bottom: 65px;
    }

    .box8 .title .vector-4 {
        width: 900px;
        height: 151px;
        left: 178px;
    }

    .box8 .title .vector-5 {
        left: 200px;
        height: 155px;
        bottom: 10px;
    }

    .box7 .box7-box img {
        width: 180px;
    }

    .box7 .box7-bottom-box:nth-child(1) {
        gap: 150px;
        margin-top: 200px;
    }

    .box8-box {
        width: 50%;
    }

    .box8-content {
        padding: 0;
        margin-top: 100px;
    }

    .box8 {
        height: auto;
    }

    .box8 .box {
        flex-wrap: wrap;
        height: auto;
    }

    .box8-box {
        height: 1200px;
    }

    .box8-box .box8-title {
        font-size: 42px;
    }

    .box8-box .box8-text {
        font-size: 40px;
        width: 100%;
        padding: 0 120px;
    }

    .box8-box::after {
        bottom: 596px;
        height: 8px;
    }

    .box8 .title-top {
        height: 390px;
        margin-bottom: 0;
        /* margin-bottom: 50px; */
    }

    .box8-box .box8-title {
        height: 524px
    }

    .box8-box .icon8 {
        width: 70px;
        margin: 40px;
    }

    .box8 .title10 {
        width: 100%;
        text-align: left;
        padding: 0 200px;
    }

    .box9-box .box1-img,
    .box9-box .box2-img {
        width: 100px;
    }

    .box9-box .box1-img {
        left: 80px;
    }

    .box9-box .box2-img {
        bottom: 80px;
    }

    .box9 .title11 {
        width: 800px;
    }

    .box9-box {
        flex-direction: column;
        /* gap: 80px; */
    }

    .box9-box .box9-avartor {
        font-size: 70px;
        width: 100%;
    }

    .box9 .vector-5 {
        bottom: 10px;
        left: -40px;
        width: 460px;
        height: 140px;
    }

    .box9-box .avartor {
        width: 350px;
        margin-right: 70px;
    }

    .box9-box .box9-avartor .position {
        font-size: 50px;
        width: auto;
    }

    .box9-avartor {
        display: flex;
        justify-items: center;
        align-items: center;
        justify-content: center;
    }

    .box9 .person-info {
        text-align: left;
    }

    .box9-box .talk-box,
    .box9-box .talk-box2 {
        font-size: 55px;
        width: 100%;
        padding: 100px 80px;
        margin-top: 50px;
    }

    .box9-right-box {
        flex-direction: column-reverse;
        margin-top: 100px;
    }

    .box10 {
        font-size: 60px;
        gap: 100px;
        padding-top: 150px;
        padding-bottom: 120px;
    }

    .box10 .contact {
        flex-direction: column;
        padding: 90px 100px;
        align-items: baseline;
        /* text-align: left; */
        width: 100%;
    }

    .contact-title {
        width: 100%;
        font-size: 50px;
    }

    .contact-bottom {
        flex-direction: column-reverse;
    }

    .box10 .contact .contact-box .title {
        font-size: 50px;
    }

    .box10 .contact .logo {
        width: 100%;
    }

    .box10 .contact .logo img {
        height: 120px;
        margin-right: 30px;
    }

    .box10 .box10-bottom {
        flex-direction: column;
        gap: 50px;
        margin-top: 120px;
    }

    .box10 .box10-bottom svg {
        width: 60px;
        height: 60px;
    }

    .box10 .btn {
        font-size: 60px;
        padding: 50px 80px;
    }

    .box10 .title {
        text-align: center;
    }

    .terms-title {
        font-size: 60px;
        margin: 100px 0 50px 0;
    }

    .terms-box .title {
        background-image: none;
        position: relative;
    }

    .terms-box .title::after {
        content: '';
        position: absolute;
        background-image: url(../images/vector-2.png);
        width: 800px;
        height: 150px;
        left: -17px;
        background-size: 100% 100%;
        top: 10px;
        z-index: -1;
    }
}

/* =================================
   Simple Header Styles (Non-Index Pages)
   ================================= */

.header-simple {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1.5rem 0;
    z-index: 1000;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
    transition: all 0.3s ease;
}

.header-simple.scrolled {
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-simple .header-container {
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-simple {
    display: flex;
    align-items: center;
}

.logo-simple img {
    height: 45px;
    width: auto;
}

.menu-btn-simple {
    background: white;
    border: 2px solid #333;
    color: #333;

    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.menu-btn-simple:hover {
    background: #333;
    color: white;
}

.menu-btn-simple span {
    display: inline-block;
}

/* =================================
   Blog List Page Styles
   ================================= */

.blog-list-section {
    padding: 8rem 4rem 6rem;
    background: white;
    min-height: 100vh;
}

.blog-list-container {
    max-width: 1400px;
    margin: 0 auto;
}

.blog-list-title {

    font-size: 2.5rem;
    font-weight: 700;
    color: #1B7950;
    margin-bottom: 3rem;
    text-align: left;
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.blog-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: white;
    overflow: hidden;
    border-bottom: 1px solid #e5e5e5;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: scale(1.01);
}

/* 偶数卡片图片在右侧 */
/* .blog-card:nth-child(even) {
    grid-template-columns: 1fr 1fr;
} */

/* .blog-card:nth-child(even) .blog-card-image {
    order: 2;
}

.blog-card:nth-child(even) .blog-card-content {
    order: 1;
} */

.blog-card-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

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

.blog-card-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #1B7950;
    color: white;
}

.blog-card-title {

    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.blog-card-description {
    color: white;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.blog-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.5rem;
    background: transparent;
    color: white;

    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 30px;
    transition: all 0.3s ease;
    align-self: end;
}

.blog-card-btn:hover {
    background: white;
    color: #1B7950;
}

/* =================================
   Article Detail Page Styles
   ================================= */

.article-hero {
    padding: 0;
    background: #1B7950;
    overflow: hidden;
}

.article-hero-container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.article-hero-content {
    color: white;
    padding: 8rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.article-hero-description {
    font-size: 1.15rem;
    line-height: 1.6;
    opacity: 0.95;
}

.article-hero-image {
    overflow: hidden;
    height: 100%;
    min-height: 500px;
}

.article-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-height: 700px;
    object-position: top;
}

/* Loading and Error States */
.loading-state,
.error-state {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    text-align: center;
}

.loading-state p,
.error-state p {

    font-size: 1.2rem;
    color: #797979;
    margin-bottom: 2rem;
}

.error-state .back-to-list-btn {
    margin-top: 1rem;
}

.article-content-section {
    padding: 6rem 2rem;
    background: white;
}

.article-content-container {
    margin: 0 auto;
    padding: 0 4rem;
}

.article-body {
    margin-bottom: 2rem;
}

.article-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #797979;
    margin-bottom: 1.5rem;
}

.article-meta {
    margin-top: 4rem;
    /* padding-top: 2rem; */
    /* border-top: 2px solid #f0f0f0; */
}

.article-meta p {

    font-size: 1rem;
    color: #797979;
    margin-bottom: 0.8rem;
}

.article-author {
    font-weight: 600;
    color: #1B7950 !important;
}

.article-link a {
    color: #1B7950;
    text-decoration: none;
    border-bottom: 1px solid #1B7950;
    transition: opacity 0.3s ease;
}

.article-link a:hover {
    opacity: 0.7;
}

.article-separator {
    margin-top: 3rem;
    height: 2px;
    background: #1B7950;
}

.article-back {
    margin-top: 3rem;
    text-align: end;
}

.back-to-list-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border: 2px solid #1B7950;
    color: #1B7950;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s ease, gap 0.3s ease;
    align-self: flex-end;
}

.back-to-list-btn:hover {
    background: #145a3a;
    gap: 0.8rem;
}

.back-to-list-btn::before {
    content: '←';
    font-size: 1.3rem;
}

/* =================================
   Mobile Responsive Styles for Blog
   ================================= */

@media (max-width: 1024px) {
    .blog-list-title {
        font-size: 2.5rem;
    }

    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
    }

    .article-hero-container {
        gap: 3rem;
    }

    .article-hero-title {
        font-size: 2.5rem;
    }

    .social-link {
        width: 62px;
        height: 62px;
    }

    .social-link svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 768px) {
    .header-simple .header-container {
        padding: 0 1.5rem;
    }

    .logo-simple img {
        height: 35px;
    }

    /* 移动端汉堡图标 */
    .menu-btn-simple {
        padding: 0;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        background: white;
        border: 2px solid #333;
    }

    .menu-btn-simple span {
        display: none;
    }

    /* 汉堡图标三条线 */
    .menu-btn-simple::before,
    .menu-btn-simple::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 2px;
        background: #333;
        transition: all 0.3s ease;
    }

    .menu-btn-simple::before {
        transform: translateY(-6px);
        box-shadow: 0 6px 0 #333;
    }

    .menu-btn-simple::after {
        transform: translateY(6px);
    }

    /* hover效果 */
    .menu-btn-simple:hover {
        background: #333;
    }

    .menu-btn-simple:hover::before,
    .menu-btn-simple:hover::after {
        background: white;
    }

    .menu-btn-simple:hover::before {
        box-shadow: 0 6px 0 white;
    }

    .blog-list-section {
        padding: 6rem 1.5rem 4rem;
    }

    .blog-list-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .blog-grid {
        flex-direction: column;
        gap: 0;
    }

    .blog-card {
        grid-template-columns: 1fr !important;
        border-bottom: 1px solid #e5e5e5;
    }

    .blog-card:nth-child(even) .blog-card-image {
        order: 0 !important;
    }

    .blog-card:nth-child(even) .blog-card-content {
        order: 0 !important;
    }

    .blog-card-image {
        height: 250px;
        order: 0;
    }

    .blog-card-content {
        padding: 2.5rem 2rem;
        order: 1;
    }

    .blog-card-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .blog-card-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .blog-card-btn {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }

    .article-hero {
        padding: 0;
    }

    .article-hero-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .article-hero-content {
        padding: 6rem 1.5rem 3rem;
        order: 1;
    }

    .article-hero-title {
        font-size: 2rem;
    }

    .article-hero-description {
        font-size: 1rem;
    }

    .article-hero-image {
        height: 300px;
        min-height: 300px;
        order: 2;
    }

    .article-content-section {
        padding: 4rem 1.5rem;
    }

    .article-body p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .blog-list-title {
        font-size: 1.8rem;
    }

    .blog-card-title {
        font-size: 1.2rem;
    }

    .article-hero-title {
        font-size: 1.8rem;
    }

    .article-hero-description {
        font-size: 1rem;
    }

    .back-to-list-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

/* =================================
   Founder's Story Page Styles
   ================================= */

.founder-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #1B7950 0%, #145a3a 100%);
}

.founder-hero-container {
    max-width: 1400px;
    margin: 0 auto;
}

.founder-hero-title {

    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-align: left;
    line-height: 1.2;
}

.founder-content-section {
    padding: 6rem 2rem;
    background: white;
}

.founder-content-container {
    max-width: 1000px;
    margin: 0 auto;
}

.founder-text {
    margin-bottom: 3rem;
}

.founder-text p {

    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.mission-box {
    background: #1B7950;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.mission-title {

    font-size: 60px;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.mission-text {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.6;
    color: white;
}

.goal-box {
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border: 2px solid #1B7950;
}

.goal-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1B7950;
    margin-bottom: 1rem;
}

.goal-subtitle {

    font-size: 1.1rem;
    color: #333;
}

/* =================================
   News List Page Styles
   ================================= */

.news-list-hero {
    padding: 10rem 2rem 4rem;
    position: relative;
    /* background: linear-gradient(135deg, #1B7950 0%, #145a3a 100%); */
}

.news-list-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -300px;
    background: #1B7950;
    /* z-index: -1; */
}

.news-list-hero-container {
    max-width: 1400px;
    margin: 0 auto;
}

.news-list-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-align: left;
    z-index: 2;
    position: relative;
}

.news-grid-section {
    padding: 6rem 2rem;
    z-index: 2;
    position: relative;
    /* background: #f8f8f8; */
}

.news-grid-container {
    max-width: 1400px;
    margin: 0 auto;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.news-card {
    background: white;
    border: 1px solid #1B7950;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.news-card-content {
    padding: 2rem;
    background: #F8FFFC;
    flex: 1;
}

.news-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1B7950;
    line-height: 1.5;
    z-index: 2;
}

.news-card-image {
    height: 180px;
    background: #F8FFFC;
    position: relative;
    display: flex;
    align-items: flex-end;
    /* padding: 1.5rem; */
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.news-card-footer {
    width: calc(100% - 4rem);
    position: absolute;
    bottom: 2rem;
    left: 2rem;
}

.news-location {
    font-size: 1rem;
    font-weight: 700;
    color: #1B7950;
    margin-bottom: 0.3rem;
}

.news-date {
    font-size: 0.9rem;
    color: #1B7950;
    font-weight: 400;
}

/* =================================
   News Detail Page Styles
   ================================= */

.news-detail-hero {
    padding: 0;
    background: #f8f8f8;
    overflow: hidden;
}

.news-detail-hero-container {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    background: #F8FFFC;
    color: #1B7950;
}

.news-detail-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 8rem 4rem;
    justify-content: center;
}

.news-detail-title {
    font-size: 3rem;
    font-weight: 700;
    /* color: #1B7950; */
    line-height: 1.2;
}

.news-detail-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.news-detail-location {
    font-size: 1.1rem;
    font-weight: 700;
    /* color: #1B7950; */
}

.news-detail-date {
    font-size: 1rem;
    /* color: #1B7950; */
}

.news-detail-image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: #e0e0e0;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-detail-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.news-content-section {
    padding: 6rem 2rem 0rem;
    background: white;
}

.news-content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.news-body {
    margin-bottom: 2rem;
}

.news-body p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #797979;
    margin-bottom: 1.5rem;
}

.news-back {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid #1B7950;
    text-align: right;
}

.back-to-news-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: white;
    color: #1B7950;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #1B7950;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.back-to-news-btn:hover {
    background: #1B7950;
    color: white;
}

/* =================================
   Responsive Styles for News & Founder Pages
   ================================= */

@media (max-width: 1024px) {
    .founder-hero-title {
        font-size: 2.5rem;
    }

    .news-list-title {
        font-size: 2.5rem;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .news-detail-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .founder-hero {
        padding: 6rem 1.5rem 3rem;
    }

    .founder-hero-title {
        font-size: 2rem;
    }

    .founder-content-section {
        padding: 4rem 1.5rem;
    }

    .founder-text p {
        font-size: 1rem;
    }

    .mission-box,
    .goal-box {
        padding: 2rem;
    }

    .mission-title,
    .goal-title {
        font-size: 1.5rem;
    }

    .mission-text,
    .goal-subtitle {
        font-size: 1rem;
    }

    .news-list-hero {
        padding: 6rem 1.5rem 3rem;
    }

    .news-list-title {
        font-size: 2rem;
    }

    .news-grid-section {
        padding: 4rem 1.5rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .news-card-content {
        padding: 1.5rem;
    }

    .news-card-title {
        font-size: 1.05rem;
    }

    .news-card-image {
        height: 150px;
        padding: 1rem;
    }

    .news-detail-hero {
        padding: 0;
    }

    .news-detail-hero-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .news-detail-header {
        padding: 10rem 1.5rem 3rem;
        order: 1;
    }

    .news-detail-title {
        font-size: 2rem;
    }

    .news-detail-image-wrapper {
        height: 300px;
        min-height: 300px;
        order: 2;
    }

    .news-content-section {
        padding: 3rem 1.5rem 4rem;
    }

    .news-body p {
        font-size: 0.95rem;
    }

    .news-back {
        text-align: center;
    }

    .back-to-news-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .founder-hero-title {
        font-size: 1.8rem;
    }

    .news-list-title {
        font-size: 1.8rem;
    }

    .news-card-image {
        height: 150px;
    }

    .news-detail-title {
        font-size: 1.5rem;
    }

    .news-detail-location {
        font-size: 1rem;
    }

    .back-to-news-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* =================================
   Career Page Styles
   ================================= */

.career-hero-section {
    padding: 8rem 0 6rem 4rem;
}

.career-hero-container {
    /* display: grid;
    grid-template-columns: 1fr 1fr; */
    display: flex;
    gap: 4rem;
    align-items: center;
    justify-content: space-between;
    /* padding-right: 0; */
}

.career-hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    /* flex: 1; */
    /* align-items: center; */
}

.career-hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #1B7950;
    line-height: 1.2;
    max-width: 800px;
}

.career-hero-description {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #797979;
    max-width: 800px;
}

.career-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 3rem;
    background: #1B7950;
    color: white;

    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s ease;
    width: fit-content;
}

.career-contact-btn:hover {
    background: #145a3a;
}

.career-hero-image {
    width: 100%;
    overflow: hidden;
    margin-right: 0;
    max-width: 1100px;
}

.career-hero-image img {
    width: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    /* max-width: 700px; */
}

/* Work at GD Section */

.work-at-gd-section {
    padding: 8rem 2rem;
    background: #F8FFFC;
}

.work-at-gd-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* .work-at-gd-content {
    max-width: 1200px;
} */

.work-at-gd-title {

    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1B7950;
    margin-bottom: 2.5rem;
}

.work-at-gd-description {

    font-size: 1.1rem;
    line-height: 1.8;
    color: #797979;
    margin-bottom: 0;
}

.work-at-gd-logo {
    margin-top: 4rem;
    display: flex;
    justify-content: end;
}

.work-at-gd-logo img {
    height: 82px;
}

/* Benefits Section */

.benefits-section {
    padding: 6rem 2rem;
    background: white;
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    border: 2px solid #1B7950;
    overflow: hidden;
}

.benefits-tabs {
    display: flex;
    flex-direction: column;
    background: white;
}

.benefit-tab {
    padding: 2.5rem 2rem;
    background: white;
    border: none;
    border-bottom: 2px solid #1B7950;

    font-size: 1.2rem;
    font-weight: 700;
    color: #1B7950;
    text-align: left;
    cursor: default;
    transition: none;
    pointer-events: none;
}

.benefit-tab:last-child {
    border-bottom: none;
}

.benefit-tab.active {
    background: #1B7950;
    color: white;
}

.benefits-content {
    border-left: 2px solid #1B7950;
    padding: 3rem 4rem;
    background: white;
}

.benefits-title {

    font-size: 2rem;
    font-weight: 700;
    color: #1B7950;
    margin-bottom: 2rem;
}

.benefits-text p {
    white-space: pre-line;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #797979;
    margin-bottom: 1.5rem;
}

.benefits-text p:last-child {
    margin-bottom: 0;
}

/* Career Path Section */

.career-path-section {
    background: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.career-path-section::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 420px;
    background: #1B7950;
    z-index: 0;
}

.career-path-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.career-path-content {
    color: white;
    position: relative;
    z-index: 3;
}

.career-path-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.career-path-text {
    font-size: 1.125rem;
    line-height: 1.8;
    opacity: 0.95;
}

.career-path-image {
    position: relative;
    z-index: 2;
}

.career-path-image img {
    width: 100%;
    height: auto;
    max-height: min(800px, 65vh);
    object-fit: contain;
    display: block;
    border-radius: 0;
    margin: -4rem 0;
}

.career-path-image .mobile-career {
    display: none;
}

.career-path-image .desktop-career {
    display: block;
}

.career-path-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: grayscale(100%);
}

/* Job Openings Section */

.job-openings-section {
    padding: 6rem 0 6rem 4rem;
    background: white;
}

.job-openings-container {
    display: grid;
    grid-template-columns: 450px 1fr; /* 固定左侧宽度，让右侧轮播图占据剩余空间 */
    gap: 4rem;
    align-items: start;
}

@media (max-width: 1280px) {
    .job-openings-container {
        grid-template-columns: 1fr; /* 变为单列布局 */
        gap: 3rem;
    }
    
    .job-openings-header {
        padding-right: 0;
        max-width: 800px; /* 限制文字宽度以保持可读性 */
    }

    .job-carousel-wrapper {
        width: 100%;
        /* 确保轮播图容器占满宽度 */
    }
}

.job-openings-header {
    padding-right: 2rem;
}

.job-openings-title {

    font-size: 2.5rem;
    font-weight: 700;
    color: #1B7950;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.job-openings-description {

    font-size: 1.1rem;
    line-height: 1.6;
    color: #797979;
}

.job-carousel-wrapper {
    position: relative;
    padding-right: 0;
    overflow: hidden;
}

.job-swiper {
    overflow: visible;
    padding: 1rem 0 3rem 0;
}

.job-swiper .swiper-slide {
    height: auto;
}

.job-card {
    background: white;
    border: 2px solid #1B7950;
    border-radius: 12px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.job-card-filled {
    background: #1B7950;
    border-color: #1B7950;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(27, 121, 80, 0.2);
}

.job-card-title {

    font-size: 1.5rem;
    font-weight: 700;
    color: #1B7950;
    line-height: 1.3;
}

.job-card-filled .job-card-title {
    color: white;
}

.job-card-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.job-card-subtitle {

    font-size: 1.2rem;
    font-weight: 600;
    color: #1B7950;
}

.job-card-filled .job-card-subtitle {
    color: white;
}

.job-card-description {

    font-size: 1rem;
    line-height: 1.6;
    color: #797979;
}

.job-card-filled .job-card-description {
    color: white;
}

.job-card-locations {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.job-locations-title {

    font-size: 1rem;
    font-weight: 600;
    color: #1B7950;
}

.job-card-filled .job-locations-title {
    color: white;
}

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

.job-locations-list li {

    font-size: 0.95rem;
    color: #797979;
    padding-left: 1.5rem;
    position: relative;
}

.job-locations-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1B7950;
}

.job-card-filled .job-locations-list li {
    color: white;
}

.job-card-filled .job-locations-list li::before {
    color: white;
}

.job-view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.5rem;
    background: transparent;
    color: #1B7950;

    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #1B7950;
    border-radius: 30px;
    transition: all 0.3s ease;
    width: fit-content;
}

.job-view-btn:hover {
    background: #1B7950;
    color: white;
}

.job-card-filled .job-view-btn {
    background: transparent;
    color: white;
    border-color: white;
}

.job-card-filled .job-view-btn:hover {
    background: white;
    color: #1B7950;
}

.job-carousel-controls {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
    padding-right: 4rem;
}

.job-nav-btn {
    width: 50px;
    height: 50px;
    border: 2px solid #1B7950;
    border-radius: 50%;
    background: white;
    color: #1B7950;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.job-nav-btn:hover {
    background: #1B7950;
    color: white;
}

.job-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* =================================
   Responsive Styles for Career Page
   ================================= */

@media (max-width: 1024px) {
    .career-hero-title {
        font-size: 2.5rem;
    }

    .job-openings-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .career-hero-section {
        padding: 6rem 1.5rem 4rem;
    }

    .career-hero-container {
        margin-top: 5rem;
        flex-direction: column-reverse;
        /* grid-template-columns: 1fr; */
        gap: 5rem;
        /* padding-right: 1.5rem; */
    }

    .career-hero-title {
        font-size: 2rem;
        text-align: center;
    }

    .career-hero-description {
        font-size: 1rem;
        text-align: center;
    }

    .career-contact-btn {
        margin: 0 auto;
        /* width: 100%; */
        padding: 1rem 5rem;
    }

    .career-hero-image {
        /* min-height: 300px; */
        order: -1;
        margin-right: 0;
    }

    .benefits-section {
        padding: 4rem 1.5rem;
    }

    .benefits-container {
        grid-template-columns: 1fr;
        border-radius: 12px;
    }

    .benefits-tabs {
        flex-direction: row;
    }

    .benefit-tab {
        flex: 1;
        padding: 1.5rem;
        font-size: 1.1rem;
        border-bottom: none;
        border-right: 2px solid #1B7950;
        text-align: center;
    }

    .benefit-tab:last-child {
        border-right: none;
    }

    .benefits-content {
        padding: 2rem;
        border-left: none;
        border-top: 2px solid #1B7950;
    }

    .benefits-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .benefits-text p {
        font-size: 0.95rem;
    }

    .career-path-section {
        padding: 3rem 0;
    }

    .career-path-section::before {
        height: auto;
        top: 0;
        bottom: 0;
        transform: none;
    }

    .career-path-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .career-path-content {
        order: 2;
    }

    .career-path-image {
        order: 1;
    }

    .career-path-image img {
        max-height: 400px;
        margin: 0;
    }

    .career-path-image .mobile-career {
        display: block;
    }

    .career-path-image .desktop-career {
        display: none;
    }

    .career-path-title {
        font-size: 1.8rem;
    }

    .career-path-text {
        font-size: 0.95rem;
    }

    .work-at-gd-section {
        padding: 4rem 1.5rem;
    }

    .work-at-gd-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .work-at-gd-description {
        font-size: 0.95rem;
        text-align: center;
    }

    .job-openings-section {
        padding: 4rem 1.5rem;
    }

    .job-openings-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .job-openings-header {
        padding-right: 0;
    }

    .job-openings-title {
        font-size: 1.8rem;
    }

    .job-openings-description {
        font-size: 1rem;
    }

    .job-carousel-wrapper {
        padding-right: 0;
    }

    .job-card {
        padding: 2rem;
    }

    .job-card-title {
        font-size: 1.3rem;
    }

    .job-card-subtitle {
        font-size: 1.1rem;
    }

    .job-card-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .career-hero-title {
        font-size: 1.8rem;
    }

    .benefits-section {
        padding: 3rem 1rem;
    }

    .benefit-tab {
        padding: 1.2rem;
        font-size: 1rem;
    }

    .benefits-content {
        padding: 1.5rem;
    }

    .benefits-title {
        font-size: 1.3rem;
    }

    .career-path-content {
        padding: 3rem 1rem;
    }

    .career-path-title {
        font-size: 1.5rem;
    }

    .career-path-image {
        min-height: 300px;
    }

    .job-openings-title {
        font-size: 1.5rem;
    }

    .job-card {
        padding: 1.5rem;
    }

    .job-card-title {
        font-size: 1.2rem;
    }

    .job-view-btn {
        width: 100%;
        padding: 0.8rem 2rem;
    }

    .job-nav-btn {
        width: 45px;
        height: 45px;
    }
}

/* Job Detail Page Styles */

.job-detail-hero {
    background: #1B7950;
    padding-top: 6rem;
    /* padding: 10rem 2rem 6rem; */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.job-detail-hero img {
    max-width: 50vw;
}

.job-detail-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.job-detail-title {

    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: white;
}

.job-detail-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;

    font-size: 1.1rem;
}

.job-detail-content-section {
    padding: 6rem 2rem;
}

.job-detail-content-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
}

.job-detail-main {
    background: white;
    padding: 3rem;
    border-radius: 12px;
}

.job-detail-section {
    margin-bottom: 3rem;
}

.job-section-title {

    font-size: 1.8rem;
    font-weight: 700;
    color: #1B7950;
    margin-bottom: 1.5rem;
}

.job-section-subtitle {

    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.job-section-text {

    font-size: 1.05rem;
    line-height: 1.8;
    color: #797979;
    white-space: pre-line;
}

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

.job-list li {

    font-size: 1.05rem;
    color: #797979;
    padding-left: 1.8rem;
    position: relative;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.job-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1B7950;
    font-size: 1.5rem;
}

.job-detail-note {
    /* background: #F8FFFC; */
    /* padding: 2rem; */
    border-radius: 8px;
    /* border-left: 4px solid #1B7950; */
    margin: 2rem 0;
}

.job-detail-note p {

    font-size: 1rem;
    color: #797979;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.job-detail-note p:last-child {
    margin-bottom: 0;
}

.job-detail-actions {
    display: flex;
    flex-direction: row;
    /* justify-content: space-between; */
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
    border-top: 1px solid #1B7950;
    ;
}

.job-apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    background: transparent;
    color: #1B7950;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #1B7950;
    border-radius: 50px;
    transition: all 0.3s ease;
    width: fit-content;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.job-apply-btn:hover {
    background: #1B7950;
    color: white;
}

.job-share {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border: 1px solid #1B7950;
    border-top: 0;
    padding: 2rem 3rem;
    /* flex: 1; */
}

.job-share-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1B7950;
    text-align: left;
}

.job-share-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
}

.share-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid #1B7950;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.share-icon:hover {
    background: #1B7950;
    transform: translateY(-3px);
}

.share-icon:hover svg path {
    stroke: white;
}

.job-detail-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.similar-jobs-box {
    background: white;
    /* padding: 2.5rem; */
    /* border-radius: 12px; */
    border: 1px solid #1B7950;
}

.similar-jobs-title {
    padding: 2rem;
    padding-bottom: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1B7950;
    margin-bottom: 2rem;
}

.similar-job-item {
    padding: 2rem;
    border-bottom: 1px solid #1B7950;
}

.similar-job-item:first-of-type {
    padding-top: 0;
}

/* .similar-job-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
} */

.similar-job-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1B7950;
    margin-bottom: 1rem;
}

.similar-job-description {

    font-size: 0.95rem;
    line-height: 1.6;
    color: #797979;
    margin-bottom: 1rem;
}

.similar-job-location {

    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.similar-job-locations {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.similar-job-locations li {

    font-size: 0.9rem;
    color: #797979;
    padding-left: 1.2rem;
    position: relative;
}

.similar-job-locations li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1B7950;
}

.see-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    background: transparent;
    color: #1B7950;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #1B7950;
    border-radius: 30px;
    transition: all 0.3s ease;
    width: calc(100% - 4rem);
    margin: 2rem;
}

.see-more-btn:hover {
    background: #1B7950;
    color: white;
}

/* Jobs List Page Styles */

.jobs-hero {
    background: #1B7950;
    padding: 10rem 2rem 6rem;
    color: white;
}

.jobs-hero-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.jobs-hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: white;
}

.jobs-hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: white;
    margin-bottom: 3rem;
    white-space: pre-line;
}

.jobs-search-box {
    display: flex;
    gap: 1rem;
    flex: 1;
}

.jobs-search-input {
    max-width: 600px;
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 1px solid #797979;
    border-radius: 50px;
    background: white;
    color: #797979;
}

.jobs-search-input::placeholder {
    color: #999;
}

.jobs-search-btn {
    padding: 1rem 3rem;
    background: #1B7950;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #1B7950;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.jobs-search-btn:hover {
    background: #145a3a;
    border-color: #145a3a;
}

.jobs-list-section {
    padding: 6rem 2rem;
}

.jobs-list-container {
    max-width: 1400px;
    margin: 0 auto;
}

.jobs-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.jobs-filter-right {
    display: flex;
    align-items: center;
}

.jobs-filter-select {
    padding: 0.75rem 1.5rem;
    padding-right: 2.5rem;
    font-size: 1rem;
    border: none;
    /* border: 2px solid #1B7950; */
    border-radius: 50px;
    background: white;
    color: #333;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231B7950' d='M1.41 0L6 4.59L10.59 0L12 1.41l-6 6l-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    min-width: 200px;
}

.jobs-filter-select:focus {
    outline: none;
    box-shadow: none;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.jobs-card {
    background: #F8FFFC;
    border: 1px solid #1B7950;
    /* border-radius: 12px; */
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.jobs-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.jobs-card-filled {
    background: #1B7950;
    border-color: #1B7950;
}

.jobs-card-title {

    font-size: 1.4rem;
    font-weight: 700;
    color: #1B7950;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.jobs-card-filled .jobs-card-title {
    color: white;
}

.jobs-card-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.jobs-card-subtitle {

    font-size: 1.1rem;
    font-weight: 600;
    color: #1B7950;
}

.jobs-card-filled .jobs-card-subtitle {
    color: white;
}

.jobs-card-description {

    font-size: 0.95rem;
    line-height: 1.6;
    color: #797979;
    flex: 1;
}

.jobs-card-filled .jobs-card-description {
    color: white;
}

.jobs-card-locations {
    margin-top: auto;
}

.jobs-locations-title {

    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
}

.jobs-card-filled .jobs-locations-title {
    color: white;
}

.jobs-locations-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.jobs-locations-list li {

    font-size: 0.9rem;
    color: #797979;
    padding-left: 1.5rem;
    position: relative;
}

.jobs-locations-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1B7950;
}

.jobs-card-filled .jobs-locations-list li {
    color: white;
}

.jobs-card-filled .jobs-locations-list li::before {
    color: white;
}

.jobs-view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    background: transparent;
    color: #1B7950;

    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #1B7950;
    border-radius: 30px;
    transition: all 0.3s ease;
    width: fit-content;
}

.jobs-view-btn:hover {
    background: #1B7950;
    color: white;
}

.jobs-card-filled .jobs-view-btn {
    color: white;
    border-color: white;
}

.jobs-card-filled .jobs-view-btn:hover {
    background: white;
    color: #1B7950;
}

/* Responsive Styles for Job Detail and Jobs List */

@media (max-width: 1024px) {
    .job-detail-content-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .job-detail-hero-container {
        padding-top: 3rem;
    }

    .job-detail-sidebar {
        position: static;
    }

    .jobs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .job-detail-hero {
        flex-direction: column;
    }

    .job-here-bg {
        width: 100%;
        margin-top: 2rem;
    }

    .job-detail-hero img {
        max-width: unset;
        width: 100%;
        height: 300px;
        object-fit: cover;
        object-position: top left;
    }
}

@media (max-width: 768px) {
    /* .job-detail-hero {
        padding: 8rem 1.5rem 4rem;
    } */

    .job-detail-title {
        font-size: 2rem;
    }

    .job-detail-location {
        font-size: 1rem;
    }

    .job-detail-content-section {
        padding: 4rem 1.5rem;
        padding-bottom: 0;
    }

    .job-detail-main {
        padding: 2rem;
    }

    .job-section-title {
        font-size: 1.5rem;
    }

    .job-section-subtitle {
        font-size: 1.1rem;
    }

    .job-section-text,
    .job-list li {
        font-size: 0.95rem;
    }

    .job-detail-actions {
        flex-direction: column-reverse;
        gap: 2rem;
        border-top: none;
    }

    .job-apply-btn {
        width: 100%;
        border-radius: 50px;
    }

    .job-share {
        padding: 2rem;
        border: 2px solid #1B7950;
        width: 100%;
    }

    .job-share-title {
        text-align: center;
        font-size: 1.2rem;
    }

    .job-share-icons {
        justify-content: center;
        gap: 1.5rem;
    }

    .share-icon {
        width: 50px;
        height: 50px;
    }

    .similar-jobs-box {
        /* padding: 2rem; */
    }

    .jobs-hero {
        padding: 8rem 1.5rem 4rem;
    }

    .jobs-hero-title {
        font-size: 2rem;
    }

    .jobs-hero-description {
        font-size: 1rem;
    }

    .jobs-search-box {
        flex-direction: row;
    }

    .jobs-search-btn {
        padding: 1rem 2rem;
    }

    .jobs-list-section {
        padding: 4rem 1.5rem;
    }

    .jobs-filter-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .jobs-filter-select {
        /* width: 100%; */
    }

    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .jobs-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .job-detail-title {
        font-size: 1.8rem;
    }

    .job-detail-main {
        padding: 1.5rem;
    }

    .job-section-title {
        font-size: 1.3rem;
    }

    .similar-jobs-box {
        padding: 1.5rem;
    }

    .similar-jobs-title {
        font-size: 1.3rem;
    }

    .jobs-hero-title {
        font-size: 1.8rem;
    }

    .jobs-card-title {
        font-size: 1.2rem;
    }
}

/* Company Page Styles */
.company-hero-section {
    background: #1B7950;
    padding: 10rem 4rem 6rem;
    position: relative;
    overflow: hidden;
}

.company-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.company-hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.2;
    position: relative;
    z-index: 2;
    /* max-width: 800px; */
}

.company-hero-logo {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.company-hero-logo img {
    width: 300px;
    height: auto;
    display: block;
}

/* Company Story Section */
.company-story-section {
    background: white;
    padding: 6rem 4rem;
    padding-bottom: 0 !important;
}

.company-story-container {
    max-width: 1400px;
    margin: 0 auto;
}

.story-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #797979;
    font-weight: 500;
    margin: 0 0 1.5rem 0;
}

.story-paragraph:last-child {
    margin-bottom: 0;
}

/* Mission Section */
.company-mission-section {
    background: white;
    padding: 4rem;
}

.company-mission-container {
    max-width: 1400px;
    margin: 0 auto;
}

.mission-card {
    background: #1B7950;
    padding: 4rem 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.mission-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: white;
    margin: 0;
}

/* Goal Section */
.company-goal-section {
    background: white;
    padding: 0 4rem 4rem;
}

.company-goal-container {
    max-width: 1400px;
    margin: 0 auto;
}

.goal-card {
    border: 2px solid #1B7950;
    padding: 4rem 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    background: #F8FFFC;
}

.goal-title {
    font-size: 3rem;
    font-weight: 600;
    color: #1B7950;
    margin: 0;
    line-height: 1.2;
}

.goal-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

/* Closing Story Section */
.company-closing-section {
    background: white;
    padding: 6rem 4rem;
    padding-top: 0 !important;
}

.company-closing-container {
    max-width: 1400px;
    margin: 0 auto;
}

.closing-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #797979;
    margin: 0;
    font-weight: 500;
}

/* Tablet Responsive (768px - 1024px) */
@media (max-width: 1024px) {
    .company-hero-section {
        padding: 8rem 3rem 5rem;
    }

    .company-hero-title {
        font-size: 2.8rem;
    }

    .company-hero-logo img {
        width: 250px;
    }

    .company-story-section,
    .company-closing-section {
        padding: 5rem 3rem;
    }

    .story-paragraph,
    .closing-paragraph {
        font-size: 1.05rem;
    }

    .company-mission-section,
    .company-goal-section {
        padding: 3rem;
    }

    .mission-card,
    .goal-card {
        padding: 3rem 4rem;
        gap: 4rem;
    }

    .mission-title,
    .goal-title {
        font-size: 2.5rem;
    }

    .mission-description,
    .goal-description {
        font-size: 1.05rem;
    }
}

/* Mobile Responsive (<=768px) */
@media (max-width: 768px) {
    .company-hero-container {
        flex-direction: column;
        text-align: center;
    }

    .company-hero-section {
        padding: 7rem 1.5rem 4rem;
    }

    .company-hero-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .company-hero-logo {
        margin-top: 3rem;
    }

    .company-hero-logo img {
        width: 180px;
    }

    .company-story-section,
    .company-closing-section {
        padding: 4rem 1.5rem;
    }

    .story-paragraph,
    .closing-paragraph {
        font-size: 1rem;
    }

    .company-mission-section {
        padding: 3rem 1.5rem;
    }

    .company-goal-section {
        padding: 0 1.5rem 3rem;
    }

    .mission-card,
    .goal-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 2rem;
    }

    .mission-title,
    .goal-title {
        font-size: 1.8rem;
        /* text-align: center; */
    }

    .mission-description,
    .goal-description {
        font-size: 1rem;
        /* text-align: center; */
    }
}

@media (max-width: 480px) {
    .company-hero-title {
        font-size: 1.8rem;
    }

    .company-hero-logo img {
        width: 120px;
    }

    .mission-card,
    .goal-card {
        padding: 2.5rem 1.5rem;
    }

    .mission-title,
    .goal-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 1024px) {

    /* Mobile Layout Adjustment for Case Study */
    .case-study-container {
        flex-direction: column;
        height: auto !important;
        /* Override 100vh */
        overflow: visible;
    }

    .case-study-content {
        width: 100%;
        height: auto;
        padding: 4rem 2rem;
    }

    .case-expertise {
        width: 100%;
        height: auto;
        display: block;
    }

    .expertise-header {
        padding-top: 8rem !important;
        /* Clear fixed menu */
        padding-bottom: 2rem;
    }

    .expertise-cards-outer {
        height: auto;
        overflow: visible;
    }

    .expertise-card {
        position: relative !important;
        height: auto !important;
        width: 100% !important;
        transform: none !important;
        top: auto !important;
        left: auto !important;
        margin-bottom: 0;
        padding-top: 4rem !important;
        /* Restore normal padding */
        padding-bottom: 4rem !important;
        justify-content: center !important;
    }

    /* Disable Left Side Hover */
    .case-study-link:hover {
        transform: none !important;
    }

    /* Why Partner Mobile */
    .why-partner-header {
        flex-direction: column;
        gap: 2rem;
    }

    .why-partner-intro {
        font-size: 1rem;
    }

    .accordion-header {
        padding: 1.5rem;
    }

}

/* Mobile Menu Logic */
.menu-icon {
    display: none;
}

@media (max-width: 768px) {

    /* Menu Icon Switch */
    .menu-text {
        display: none;
    }

    .menu-icon {
        display: block;
    }

    .menu-btn {
        width: 62px !important;
        padding: 0 !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Partner Images Fix */
    /* .partner-item {
        padding: 1.5rem !important;
        width: 140px !important;
        height: 100px !important;
    } */

    .partner-item img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .partners-track {
        gap: 1rem;
    }

    /* Insights/Swiper Mobile Fix */
    .insights-swiper .swiper-slide,
    .market-insight-swiper .swiper-slide {
        width: 85vw !important;
        /* Force width */
        max-width: 350px;
        margin-right: 20px;
        /* Explicit margin, let Swiper handle spaceBetween */
    }

    .insights-swiper .swiper-wrapper,
    .market-insight-swiper .swiper-wrapper {
        display: flex;
        /* Ensure flex layout */
        width: 100%;
        height: 100%;
        box-sizing: content-box;
        /* Swiper requirement */
    }

    /* Ensure pointer events work */
    .insights-swiper,
    .market-insight-swiper {
        touch-action: pan-y;
        pointer-events: auto;
    }
}

/* General Case Study Enhancements (All screens) */
.expertise-card {
    justify-content: center !important;
    /* Group content in center */
    gap: 4rem;
    /* Specific spacing between title and desc */
}

.expertise-card-description {
    font-size: 1.35rem !important;
    line-height: 1.6;
}

.expertise-card-title {
    font-size: 2rem !important;
    /* Slightly larger */
}

/* Append to existing media query end */
@media (max-width: 1024px) {
    .expertise-card {
        justify-content: flex-start !important;
        /* Reset for mobile vertical stack */
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .why-partner-header {
        flex-direction: column;
        gap: 2rem;
    }

    .why-partner-intro {
        font-size: 1rem;
    }

    .accordion-header {
        padding: 1.5rem;
    }

    .accordion-body {
        padding: 0 1.5rem 2rem 1.5rem;
    }

    /* Advantages Section Mobile Override */
    .advantage-card {
        padding: 1.5rem 1.5rem 4rem 1.5rem !important;
        /* Specific padding adjustment */
        height: auto;
    }
}