/* 重置和基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #F9F9F9;
    color: #111111;
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

.page-wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 164px;
    background-color: #F9F9F9;
    z-index: 1000;
    overflow: visible;
    /* 允许下拉菜单溢出 */
    transition: height 0.3s ease;
}

.navbar.scrolled {
    height: 100px;
}

.nav-content {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    max-width: 1920px;
}

.nav-logo {
    position: absolute;
    left: 8.59%;
    /* 165px / 1920px */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

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

.nav-menu {
    position: absolute;
    right: 22.66%;
    /* 435px / 1920px */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 70px;
    align-items: center;
}

.nav-link {
    font-size: 18px;
    line-height: 24px;
    color: #111111;
    text-decoration: none;
    font-weight: 400;
}

.nav-link.active {
    font-weight: 700;
    color: #BEA66E;
}

.nav-language {
    position: absolute;
    right: 8.59%;
    /* 165px / 1920px */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.nav-language span {
    font-size: 14px;
    line-height: 18px;
    color: #111111;
}

.arrow-down {
    width: 16px;
    height: 16px;
}

/* 语言下拉菜单 */
.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    padding-top: 15px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1001;
    pointer-events: none;
}

.nav-language:hover .language-dropdown,
.language-dropdown:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* 向上的三角箭头 */
.dropdown-arrow {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 9px solid #FFFFFF;
    margin: 0 auto;
    filter: drop-shadow(0px -2px 4px rgba(0, 0, 0, 0.05));
}

/* 下拉内容框 */
.dropdown-content {
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0px 0px 167px 0px rgba(0, 0, 0, 0.07),
        0px 0px 97.803px 0px rgba(0, 0, 0, 0.05),
        0px 0px 53.193px 0px rgba(0, 0, 0, 0.04),
        0px 0px 13.607px 0px rgba(0, 0, 0, 0.03);
    min-width: 120px;
}

/* 语言选项 */
.language-option {
    padding: 10px 16px;
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1C1C1C;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.language-option:hover {
    background-color: #F5F5F5;
}

.language-option.active {
    color: #D39B39;
    font-weight: 500;
}

/* Banner区域 */
.banner-section {
    position: absolute;
    left: 0;
    top: 304px;
    width: 100%;
    height: 1010px;
}

/* 圆形装饰 - z-index: 1 (底层) */
.banner-circle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 600px;
    width: 820px;
    height: 820px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

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

/* Banner图片 - z-index: 2 (中层) */
.banner-image {
    width: 100%;
    position: absolute;
    left: 0;
    top: 290px;
    height: 720px;
    z-index: 2;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

/* 标题 - z-index: 3 (顶层) */
.banner-title {
    position: absolute;
    left: 8.59%;
    /* 165px / 1920px */
    top: 0;
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 300;
    font-size: 96px;
    line-height: 1.3;
    color: #BEA66E;
    white-space: nowrap;
    z-index: 3;
}

.banner-title p {
    margin: 0;
}

/* 蓝色信息卡片背景 - 位于About区域最上方 */
.info-card {
    position: absolute;
    right: 0;
    top: 1200px;
    width: 49.375%;
    max-width: 948px;
    padding: 64px;
    /* 948px / 1920px */
    min-height: 360px;
    background-color: #0E2B59;
    z-index: 100;
}

/* 蓝色卡片的文字内容容器 */
.info-content {

    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-content>* {
    pointer-events: auto;
}

.info-text {
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 2;
    color: #FFFFFF;
}

.info-highlight {
    display: flex;
    flex-direction: column;
}

.highlight-label {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 36px;
}

.highlight-label span {
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 2;
    color: #FFFFFF;
    white-space: nowrap;
}

.highlight-line {
    width: 32px;
    height: 1px;
    background-color: #FFFFFF;
}

.highlight-text {
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 300;
    font-size: 32px;
    line-height: 2;
    color: #BEA66E;
}

/* 关于我们区域 */
.about-section {
    position: absolute;
    left: 0;
    top: 1200px;
    width: 100%;
    max-width: 1920px;
    height: 1094px;
}

.about-title {
    position: absolute;
    left: 8.59%;
    /* 165px / 1920px */
    top: 530px;
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 58px;
    color: #0E1543;
    white-space: nowrap;
}

.about-content {
    position: absolute;
    left: 8.59%;
    /* 165px / 1920px */
    top: 652px;
    width: 33.59%;
    /* 645px / 1920px */
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 2;
    color: #111111;
}

.about-content p {
    margin: 0;
}

html[lang="en"] .about-link {
    top: 1000px;
}

html[lang="ja"] .about-link {
    top: 1000px;
}

.about-link {
    position: absolute;
    left: 8.59%;
    /* 165px / 1920px */
    top: 932px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.about-link span {
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #BEA66E;
    white-space: nowrap;
}

.link-circle {
    width: 32px;
    height: 32px;
    border: 1px solid #BEA66E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-circle img {
    width: 16px;
    height: 16px;
}

/* 服务介绍区域 */
.services-section {
    position: absolute;
    left: 0;
    top: 2294px;
    width: 100%;
    height: 1038px;
    overflow: visible;
    z-index: 2;
    /* 高于careers区域 */
}

.services-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 56.25%;
    /* 1080px / 1920px */
    height: 1038px;
    background-color: #0E2B59;
}

.services-title {
    padding-top: 120px;
    text-align: center;
    /* 居中对齐 */
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 58px;
    color: #FFFFFF;
    white-space: nowrap;
}

.services-list {
    margin: 0 auto;
    margin-top: 116px;
    width: 75%;
    /* 810px / 1080px */
    display: flex;
    flex-direction: column;
}

.service-item {
    width: 100%;
    /* 继承services-list的宽度 */
    display: flex;
    flex-direction: column;
    gap: 32px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

/* 默认状态：active项显示背景 */
.service-item.active {
    background-color: rgba(255, 255, 255, 0.08);
}

/* hover状态：只有被hover的项显示背景 */
.services-list:hover .service-item {
    background-color: transparent;
}

.services-list:hover .service-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.service-line {
    opacity: .2;
    width: 100%;
    /* 继承父容器宽度 */
    height: 1px;
    background-color: rgba(255, 255, 255, 1);
}

.service-header {
    display: flex;
    justify-content: space-between;
    padding-left: 32px;
    align-items: center;
}

.service-num-wrapper {
    display: flex;
    align-items: center;
    gap: 48px;
}

.service-num {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    color: #FFFFFF;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* 默认状态：active项的数字高亮 */
.service-num.active {
    background-color: #BEA66E;
    border-color: #BEA66E;
}

/* hover状态：只有被hover项的数字高亮 */
.services-list:hover .service-num {
    background-color: transparent;
    border-color: #FFFFFF;
}

.services-list:hover .service-item:hover .service-num {
    background-color: #BEA66E;
    border-color: #BEA66E;
}

.service-name {
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    transition: color 0.3s ease;
}

/* 默认状态：active项的标题高亮 */
.service-name.active {
    color: #BEA66E;
}

/* hover状态：只有被hover项的标题高亮 */
.services-list:hover .service-name {
    color: rgba(255, 255, 255, 0.6);
}

.services-list:hover .service-item:hover .service-name {
    color: #BEA66E;
}

.service-toggle {
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

/* 默认状态：active项隐藏加号 */
.service-item.active .service-toggle {
    display: none;
}

/* hover状态：被hover的项隐藏加号 */
.services-list:hover .service-toggle {
    display: block;
}

.services-list:hover .service-item:hover .service-toggle {
    display: none;
}

.service-toggle img {
    width: 100%;
    height: 100%;
}

.service-details {
    padding: 0 96px 24px;
    display: none;
}

/* 默认状态：active项显示详细内容 */
.service-item.active .service-details {
    display: block;
}

/* hover状态：其他项收起，只有被hover的项展开 */
.services-list:hover .service-details {
    display: none;
}

.services-list:hover .service-item:hover .service-details {
    display: block;
}

.service-details ul {
    list-style: none;
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.service-details li {
    padding-left: 24px;
    position: relative;
}

.service-details li::before {
    content: "•";
    position: absolute;
    left: 0;
}

.services-link {
    position: absolute;
    right: 7vw;
    top: 970px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.services-link span {
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #BEA66E;
    white-space: nowrap;
}

.services-right {
    position: absolute;
    left: 56.25%;
    /* 1080px / 1920px */
    right: 0;
    top: -164px;
    height: 880px;
    overflow: visible;
}

/* 白色遮挡块 - 防止careers区域溢出覆盖services-right */
.services-bottom-cover {
    position: absolute;
    left: 56.25%;
    /* 从services-right的左边缘开始 */
    right: 0;
    top: 716px;
    /* services-right底部：-164px + 880px = 716px */
    height: 400px;
    /* 足够高度遮挡溢出部分 */
    background-color: #F9F9F9;
    z-index: 5;
}

.services-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.golden-circle {
    position: absolute;
    left: 85.52%;
    /* 1642px / 1920px */
    top: -264px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #BEA66E;
    z-index: 10;
}

/* 人才招聘区域 */
.careers-section {
    position: absolute;
    left: 0;
    top: 3332px;
    width: 100%;
    height: 902px;
    overflow: visible;
    /* 允许背景图片溢出 */
    z-index: 1;
    /* 确保在遮挡层下方 */
}

.careers-bg {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* 左上角遮罩 */
.careers-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 56.25%;
    /* 1080px / 1920px */
    height: 640px;
    background-color: rgba(196, 196, 196, 0.3);
    z-index: 2;
}

/* 右下角遮罩 */
.careers-overlay-right {
    position: absolute;
    left: 50%;
    /* 960px / 1920px */
    top: 120px;
    width: 50%;
    /* 960px / 1920px */
    height: 782px;
    background-color: rgba(196, 196, 196, 0.3);
    z-index: 2;
}

.careers-content {
    position: absolute;
    left: 8.59%;
    /* 165px / 1920px */
    top: 204px;
    z-index: 3;
    /* 确保内容在遮罩层之上 */
}

.careers-title {
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 500;
    font-size: 48px;
    line-height: 58px;
    color: #FFFFFF;
    white-space: nowrap;
    margin-bottom: 48px;
}

.careers-text {
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #FFFFFF;
    white-space: nowrap;
    margin-bottom: 32px;
}

.careers-btn {
    display: block;
    width: 192px;
    background-color: #BEA66E;
    padding: 18.055px 36.111px;
    border: none;
    cursor: pointer;
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 700;
    font-size: 18.055px;
    line-height: 1.5;
    color: #FFFFFF;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.careers-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0);
    transition: background-color 0.3s ease;
    pointer-events: none;
}

.careers-btn:hover::before {
    background-color: rgba(255, 255, 255, 0.15);
}

/* 页脚 */
.footer {
    position: absolute;
    left: 0;
    top: 3972px;
    width: 100%;
    height: 486px;
    z-index: 2;
    /* 确保在careers区域之上 */
}

.footer-top {
    position: relative;
    width: 91.41%;
    /* 1755px / 1920px */
    height: 354px;
    background-color: #0E2B59;
    z-index: 10;
    /* 确保在footer-bottom之上 */
    left: 0;
    margin: 0;
}

.footer-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 60px;
    text-align: center;
    z-index: 11;
}

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

.footer-contact {
    position: absolute;
    left: 9.4%;
    /* 165px / 1755px (相对于footer-top) */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item h4 {
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}



.contact-item p {
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 240px;
    display: flex;
    gap: 64px;
    z-index: 11;
}

.footer-nav a {
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
    text-decoration: none;
    white-space: nowrap;
}

.footer-bottom {
    position: absolute;
    left: 0;
    top: 262px;
    width: 100%;
    height: 224px;
    background-color: #0E1543;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 92px;
    /* 顶部内边距，避开被遮挡区域（354-262=92px） */
    gap: 16px;
    /* 减小两段文字之间的间距 */
    z-index: 1;
}

.footer-bottom p {
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 18px;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    white-space: nowrap;
}

/* 手机端导航 */
/* 默认隐藏手机端菜单按钮 */
.mobile-menu-toggle {
    display: none;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.mobile-menu-toggle img {
    width: 100%;
    height: 100%;
    display: block;
}

/* 手机端全屏菜单覆盖层 */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    /* 动态视口高度，更适合移动端 */
    background-color: #0E2B59;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    /* iOS 平滑滚动 */
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

/* 手机端菜单头部 */
.mobile-menu-header {
    position: relative;
    width: 100%;
    height: 76px;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.mobile-menu-header .nav-logo {
    position: static;
    transform: none;
}

.mobile-menu-close {
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close img {
    width: 100%;
    height: 100%;
    display: block;
}

/* 手机端菜单导航 */
.mobile-menu-nav {
    padding: 24px 24px 0;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.mobile-nav-link {
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
    text-decoration: none;
    padding: 24px 8px;
    display: block;
}

.mobile-nav-link.active {
    font-weight: 500;
    color: #BEA66E;
}

.mobile-nav-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* 手机端语言选择器 */
.mobile-language-selector {
    margin-top: auto;
    /* 推到底部 */
    padding: 32px;
    padding-bottom: calc(32px + env(safe-area-inset-bottom, 32px));
    display: flex;
    gap: 24px;
    align-items: center;
    flex-shrink: 0;
    background-color: #0E2B59;
    /* 确保背景色一致 */
    position: sticky;
    bottom: 0;
    z-index: 1;
}

.mobile-lang-option {
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.mobile-lang-option:hover {
    opacity: 0.8;
}

.mobile-lang-option.active {
    color: #BEA66E;
}

/* 响应式设计 */
@media (max-width: 1440px) {

    .navbar,
    .banner-section,
    .about-section,
    .services-section,
    .careers-section,
    .footer {
        width: 100%;
        max-width: 1920px;
    }

    .banner-image {
        right: 0;
    }
}

@media (max-width: 1024px) {
    .navbar {
        height: 120px;
    }

    .nav-menu {
        gap: 40px;
        right: 280px;
    }

    .banner-title {
        font-size: 64px;
    }

    .info-card {
        left: auto;
        right: 40px;
        width: 80%;
    }

    .info-content {
        right: 80px;
    }

    .services-left {
        width: 100%;
    }

    .services-right {
        display: none;
    }
}

@media (max-width: 768px) {

    /* 防止横向滚动 */
    body {
        background-color: #F9F9F9;
    }



    .navbar {
        background-color: #fff;
        height: 76px;
        max-width: 100vw;
    }

    /* 隐藏 PC 端导航元素 */
    .nav-menu {
        display: none;
    }

    .nav-language {
        display: none;
    }

    /* 显示手机端菜单按钮 */
    .mobile-menu-toggle {
        display: block;
    }

    /* 调整 logo 位置 */
    .nav-logo {
        left: 24px;
    }

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

    /* Banner 手机端样式 */
    .banner-section {
        top: 76px;
        height: auto;
    }

    .banner-title {
        font-size: 32px;
        line-height: initial;
        left: 24px;
        top: 30px;
        white-space: initial;
    }




    /* 圆形装饰 */
    .banner-circle {
        width: 320px;
        height: 320px;
        left: calc(50% + 5px);
        top: 175px;
    }

    /* Banner 图片 - 手机端使用 banner-mobile.png */
    .banner-image {
        left: 6.15%;
        right: 0;
        top: 152px;
        bottom: 0;
        height: 24vh;
        width: 93.75vw;
    }

    .banner-image img {
        content: url('../assets/banner-mobile.png');
    }


    .highlight-label span {
        font-size: 16px;
        color: #FFFFFF;
    }

    .info-card {
        right: 0;
        top: 355px;
        padding: 24px;

    }

    .info-text {
        font-size: 16px;
    }

    html[lang="ja"] .info-text {
        font-size: 14px;
    }

    html[lang="en"] .info-text {
        line-height: 1.8;
        font-size: 14px;
    }

    html[lang="en"] .highlight-text {
        font-size: 16px;
    }

    .info-content {
        gap: 0px;
    }

    .highlight-text {
        white-space: normal;
        font-size: 20px;
        line-height: 1.5;
        color: #BEA66E;
    }

    /* About 区域 - 手机端 */
    .about-section {
        position: absolute;
        top: 770px;
        left: 0;
        width: 100%;
        height: auto;
        padding: 0 24px 60px;
    }

    .about-title {
        position: relative;
        left: 0;
        top: 0;
        font-size: 24px;
        line-height: 30px;
        text-align: center;
        margin-bottom: 24px;
        color: #111111;
    }

    .about-content {
        position: relative;
        left: 0;
        top: 0;
        width: 342px;
        max-width: 100%;
        font-size: 16px;
        line-height: 30px;
        color: #111111;
        margin: 0 auto;
    }

    .about-link {
        position: relative;
        left: 0px;
        top: 0;
        margin-top: 32px;
        display: inline-flex;
        align-items: center;
        gap: 16px;
        color: #BEA66E;
    }

    .services-section {
        top: 1300px;
        display: flex;
        height: auto;
        flex-wrap: wrap;
        flex-direction: row-reverse;
    }

    .services-left {
        height: auto;
        position: relative;
        order: 2;
        height: 880px;
    }

    .services-title {
        font-size: 24px;
        padding-top: 64px;
    }

    .services-list {
        margin: 48px 0 0 0;
        padding: 24px;
        width: 100%;
    }

    .service-num {
        width: 32px;
        height: 32px;
    }

    .service-name {
        font-size: 18px;
    }

    .service-toggle {
        width: 16px;
        height: 16px;
    }


    .service-header {
        padding-left: 16px;
    }

    .services-bottom-cover {
        display: none;
    }

    .services-right {
        order: 1;
        left: 0;
        right: 0;
        top: 0;
        height: 410px;
        width: 100%;
        position: relative;
        display: block;
    }

    .services-link {
        top: initial;
        left: initial;
        right: 20px;
        bottom: 50px;
    }

    .services-right img {
        height: 410px;
    }

    .golden-circle {
        left: initial;
        right: 24px;
        top: -50px;
        width: 100px;
        height: 100px;
    }

    .careers-section {
        top: 2590px;
        height: 346px;
    }

    .careers-overlay-right {
        display: none;
    }

    .careers-overlay {
        display: none;
    }

    .careers-bg {
        width: 100%;
        top: 0;
        left: 0;
        height: 346px;
        object-position: 50% 50%;
        content: url('../assets/career-mobile.png');
    }

    .careers-content {
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        padding: 24px;
    }

    .careers-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .careers-text {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .careers-btn {
        width: 144px;
        height: 62px;
        font-size: 16px;
    }


    .footer {
        top: 2936px;
    }

    .footer-top {
        width: 100%;
        height: 520px;
    }

    .footer-logo {
        top: 20px;
    }

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

    .footer-contact {
        left: 32px;
        bottom: 32px;
        top: initial;
        transform: translateY(0%);
        gap: 16px;
    }

    .footer-nav {
        justify-content: center;
        flex-wrap: wrap;
        left: 0px;
        top: 160px;
        transform: translateX(0%);
        gap: 24px;
    }

    .footer-bottom {
        position: relative;
        top: 0;
        left: 0;
        padding: 0;
        height: 90px;

    }
}


@media (max-width:440px) {
    .service-num-wrapper {
        gap: 24px;
    }

    .service-details {
        padding: 0;
        padding-left: 70px;
    }

    html[lang="en"] .service-num-wrapper {
        gap: 8px;
    }

    html[lang="en"] .service-details {
        padding: 0;
        padding-left: 24px;
    }

    .service-name {
        font-size: 16px;
    }

    .service-num {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .highlight-text {
        font-size: 18px;
    }

    .banner-title {
        font-size: 28px;
    }
}