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

html,
body {
    width: 100%;
    min-height: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.goTop>img {
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.goTop {
    position: fixed;
    right: 20px;
    bottom: 20px;
}

.header-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);

}
.header-container.header-container2 {
       position: relative;
  
   background: #192C64;
}
.header {
    width: 1580px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
}


.header-nav ul {
    display: flex;
    list-style: none;
}

.header-nav ul li {
    margin: 0 10px;
}

.header-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.header-nav ul li a:hover,
.header-nav ul li a.nav-active {
    color: #d5b36b;
    border-bottom: 2px solid #d5b36b;
}

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

.search-icon,
.lang-switch {
    margin-left: 20px;
    cursor: pointer;
    position: relative;
}

.search-icon img,
.lang-switch img {
    width: 25px;
    
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    min-width: 100px;
}

.lang-switch:hover .lang-dropdown {
    display: block;
}

.lang-dropdown a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    text-align: center;
}

.lang-dropdown a:hover {
    background: #d5b36b;
    color: #192C64;
}

.search-box {
    position: absolute;
    top: 100%;
    right: 100px;
    background: rgba(0, 0, 0, 0.9);
    padding: 15px;
    display: none;
    z-index: 1001;
}

.search-box input {
    padding: 10px;
    width: 250px;
    border: 1px solid #d5b36b;
    background: transparent;
    color: #fff;
}

.search-box button {
    padding: 10px 20px;
    background: #d5b36b;
    border: none;
    color: #192C64;
    cursor: pointer;
    margin-left: 10px;
}

.swiper-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.swiper-slide {
    position: relative;
}

.swiper-slide img {
    width: 100%;
    max-height: 100vh;
    object-fit: cover;
    height: auto;
}

.banner-content {
    position: absolute;
    left: calc((100% - 1580px) / 2 + 80px);
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
     /* animation: fadeInUp 1s ease; */
}

.banner-title {
    font-size: 39px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #d5b36b;
}

.banner-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    text-align: justify;
    text-align-last: justify;
    width: 100%;
    color: #d5b36b;
}

.banner-tags {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.banner-tags span {
    padding: 10px 25px;
    border: 1px solid #d5b36b;
    color: #d5b36b;
    background: rgba(213, 179, 107, 0.2);
}

.banner-links {
    display: flex;
    gap: 20px;
}

.btn-primary {
    padding: 15px 40px;
    background: #d5b36b;
    color: #fff;
    text-decoration: none;
    border: 1px solid #d5b36b;
}

.btn-secondary {
    padding: 15px 40px;
    background: transparent;
    color: #d5b36b;
    text-decoration: none;
    border: 1px solid #d5b36b;
}

.swiper-pagination {
    position: absolute;
    bottom: 30px !important;
    left: 50% !important;
    transform: translateX(-50%);
}

.swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    background: #192C64;
    opacity: 1;
    border-radius: 50%;
    margin: 0 10px !important;
}

.swiper-pagination-bullet-active {
    background: #d5b36b;
}

.swiper-button-prev,
.swiper-button-next {
    width: 78px;
    height: 78px;
    border-radius: 50%;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

.swiper-button-prev {
    background-image: url('../images/jtl.png');
    background-size: 50% 50%;
    background-repeat: no-repeat;
    background-position: center;
    left: calc((100% - 1580px) / 2);
}

.swiper-button-next {
    background-image: url('../images/jtr.png');
    background-size: 50% 50%;
    background-repeat: no-repeat;
    background-position: center;
    right: calc((100% - 1580px) / 2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(-40%);
    }

    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

@media (max-width: 1600px) {

    .header,
    .banner-content {
        width: 95%;
        margin: 0 auto;
        left: 2.5%;
    }

    .swiper-button-prev {
        left: 2.5%;
    }

    .swiper-button-next {
        right: 2.5%;
    }
}

@media (max-width: 768px) {
    .header {
        flex-wrap: wrap;
        padding: 15px;
    }

    .header-nav {
        order: 3;
        width: 100%;
        margin-top: 15px;
    }

    .header-nav ul {
        flex-wrap: wrap;
        gap: 10px;
    }

    .header-nav ul li {
        margin: 0;
    }

    .header-nav ul li a {
        font-size: 14px;
    }

    .header-right {
        position: absolute;
        right: 15px;
        top: 15px;
    }

    .search-icon,
    .lang-switch {
        margin-left: 15px;
    }

    .search-icon img,
    .lang-switch img {
        width: 25px;
        height: 25px;
    }

    .search-box {
        right: 0;
        width: 100%;
        left: 0;
    }

    .search-box input {
        width: calc(100% - 90px);
    }

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

    .banner-subtitle {
        font-size: 14px;
    }

    .banner-tags {
        flex-wrap: wrap;
        gap: 10px;
    }

    .banner-tags span {
        padding: 8px 15px;
        font-size: 12px;
    }

    .banner-links {
        flex-wrap: wrap;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 25px;
        font-size: 14px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
        height: 40px;
    }

    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 5px !important;
    }
}

.core-ability-bg {
    width: 100%;
    background-image: url('../images/bg1.png');
    background-size:cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 120px 0 120px;
    min-height: 1100px;
 
}

.core-ability-container {
    width: 1580px;
    margin: 0 auto;
}

.core-ability-content {
     /* animation: fadeInUp 1s ease; */
}

.core-ability-title {
    font-size: 32px;
    font-weight: bold;
    color: #192C64;
    text-align: center;
    margin-bottom: 50px;
}

.core-ability-list {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.core-ability-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.core-ability-item:hover {
    background-color: #D5B36B;
}

.core-ability-icon {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.core-ability-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
}

.core-ability-icon .icon-normal {
    opacity: 1;
}

.core-ability-icon .icon-hover {
    opacity: 0;
    filter: brightness(0) invert(1);
}

.core-ability-item:hover .core-ability-icon .icon-normal {
    opacity: 0;
}

.core-ability-item:hover .core-ability-icon .icon-hover {
    opacity: 1;
}

.core-ability-item-title {
    font-size: 18px;
    color: #192C64;
    transition: color 0.3s ease;
    text-align: center;
}

.core-ability-item:hover .core-ability-item-title {
    color: white;
}

.core-ability-divider {
    width: 1px;
    height: 100px;
    background-color: #ddd;
}

.core-ability-stats {
    display: flex;
    justify-content: center;
    gap: 100px;
}

.core-ability-stat {
    text-align: center;
}

.core-ability-stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #192C64;
    margin-bottom: 10px;
}

.core-ability-stat-text {
    font-size: 18px;
    color: #192C64;
}

.arrow-down,
.arrow-up {
    margin-left: 5px;
}

.core-ability-button-container {
    text-align: center;
    padding: 30px 0;
    background-color: white;
}

.core-ability-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 30px;
    border: 1px solid #192C64;
    color: #192C64;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.core-ability-more-btn:hover {
    background-color: #192C64;
    color: white;
}
.core-ability-more-btn:hover img{
    filter: brightness(0) invert(1);
}
.core-ability-more-btn img {
    width: 20px;
    height: auto;
}

@media (max-width: 1600px) {
    .core-ability-container {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .core-ability-bg {
        padding: 40px 0 80px;
    }

    .core-ability-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .core-ability-list {
        flex-wrap: wrap;
    }

    .core-ability-item {
        flex-basis: 50%;
        padding: 20px 10px;
    }

    .core-ability-divider {
        display: none;
    }

    .core-ability-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .core-ability-item-title {
        font-size: 14px;
    }

    .core-ability-stats {
        gap: 40px;
    }

    .core-ability-stat-number {
        font-size: 36px;
    }

    .core-ability-stat-text {
        font-size: 14px;
    }

    .core-ability-more-btn {
        padding: 10px 20px;
        font-size: 14px;
        gap: 10px;
    }

    .core-ability-more-btn img {
        width: 16px;
    }
}

.product-showcase-bg {
    background: linear-gradient(to bottom right, #ffffff, #8892af);
    padding: 60px 0;
    overflow: hidden;
}

.product-showcase-container {
    width: 1580px;
    margin: 0 auto;
}

.product-showcase-content {
     /* animation: fadeInUp 1s ease; */
}

.product-showcase-header {
    text-align: left;
    margin-bottom: 40px;
}

.product-showcase-title {
    font-size: 32px;
    font-weight: bold;
    color: #192C64;
    margin-bottom: 10px;
}

.product-showcase-subtitle {
    font-size: 18px;
    color: #D5B36B;
}

.product-tabs-wrapper {
    overflow: hidden;
    margin-bottom: 40px;
}

.product-tabs-container {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.product-tabs-container::-webkit-scrollbar {
    display: none;
}

.product-tabs {
    display: inline-flex;
    gap: 30px;
}

.product-tab {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 15px;
    background: white;
    min-width: 180px;
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.product-tab img {
    width: 100%;
 
    object-fit: contain;
    margin-bottom: 15px;
}

.product-tab span {
    color: #192C64;
    transition: color 0.3s ease;
}

.product-tab.active {
    border-bottom: 2px solid #D5B36B;
}

.product-tab.active span {
    color: #D5B36B;
}

.product-content-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-content-prev,
.product-content-next {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.product-content-prev img,
.product-content-next img {
    width: 30px;
    height: 30px;
}

.product-content-container {
    flex: 1;
    position: relative;
    min-height: 550px;
}

.product-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    gap: 30px;
    align-items: center;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    pointer-events: none;
}

.product-content.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.product-content.prev {
    transform: translateX(-100%);
}

.product-content-left {
    width: 65%;
}

.product-content-left img {
    width: 100%;
    height: auto;
}

.product-content-right {
    width: 35%;
    flex-shrink: 0;
    background: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.product-content-header {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 20px;
}

.product-content-title {
    font-size: 24px;
    font-weight: bold;
    color: #192C64;
    margin: 0;
}

.product-content-subtitle {
    color: #D5B36B;
}

.product-content-desc {
    font-size: 14px;
    color: #192C64;
    margin-bottom: 35px;
    line-height: 1.6;
}

.product-specs {
    margin-bottom: 20px;
}

.product-specs-title {
    font-size: 20px;
    font-weight: bold;
    color: #192C64;
    text-align: center;
    margin-bottom: 25px;
}

.product-specs-table {
    width: 100%;
    border-collapse: collapse;
}

.product-specs-table th,
.product-specs-table td {
    border: 1px solid #192C64;
    padding: 10px;
    text-align: center;
    font-size: 14px;
}

.product-specs-table th {
    background-color: #D5B36B;
    color: #192C64;
    font-weight: normal;
}

.product-specs-table td {
    color: #D5B36B;
}

.product-content-link {
    align-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 25px;
    color: #192C64;
    text-decoration: none;
    font-size: 14px;
    margin-top: auto;
    border: 1px solid #192C64;
    background: transparent;
    transition: all 0.3s ease;
}

.product-content-link img {
    width: 16px;
    height: auto;
    transition: filter 0.3s ease;
}

.product-content-link:hover {
    background-color: #192C64;
    color: white;
}

.product-content-link:hover img {
    filter: brightness(0) invert(1);
}

@media (max-width: 1600px) {
    .product-showcase-container {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .product-showcase-bg {
        padding: 40px 0;
    }

    .product-showcase-title {
        font-size: 24px;
    }

    .product-showcase-subtitle {
        font-size: 14px;
    }

    .product-tab {
        min-width: 140px;
        padding: 10px;
    }

    .product-tab img {
        width: 100%;
      
    }

    .product-tab span {
        font-size: 12px;
    }

    .product-content-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .product-content-prev,
    .product-content-next {
        width: 40px;
        height: 40px;
    }

    .product-content-prev img,
    .product-content-next img {
        width: 24px;
        height: 24px;
    }

    .product-content {
        flex-direction: column;
    }

    .product-content-right {
        padding: 20px;
    }

    .product-content-header {
        flex-wrap: wrap;
        gap: 10px;
    }

    .product-content-title {
        font-size: 18px;
    }

    .product-content-subtitle {
        font-size: 12px;
    }

    .product-content-desc {
        font-size: 12px;
    }

    .product-specs-table th,
    .product-specs-table td {
        padding: 6px;
        font-size: 11px;
    }

    .product-content-link {
        font-size: 12px;
    }
}

.core-equipment-bg {
    background-image: url('../images/bg2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
}

.core-equipment-container {
    width: 1580px;
    margin: 0 auto;
}

.core-equipment-content {
     /* animation: fadeInUp 1s ease; */
}

.core-equipment-title {
    font-size: 28px;
    font-weight: bold;
    color: #D5B36B;
    text-align: left;
    margin-bottom: 50px;
}

.core-equipment-list {
    display: flex;
    justify-content: space-around;
    margin-bottom: 50px;
}

.core-equipment-item {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 65px 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 20px;
}

.core-equipment-item:hover {
    background-color: rgba(25, 44, 100, 0.6);
}

.equipment-icon {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: filter 0.3s ease;
}

.core-equipment-item:hover .equipment-icon {
    filter: brightness(0) saturate(100%) invert(78%) sepia(18%) saturate(1158%) hue-rotate(355deg) brightness(94%) contrast(88%);
}

.equipment-title {
    font-size: 18px;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 5px;
    text-align: center;
    transition: color 0.3s ease;
}

.equipment-subtitle {
    font-size: 14px;
    color: #fff;
    text-align: center;
    transition: color 0.3s ease;
}

.core-equipment-item:hover .equipment-title,
.core-equipment-item:hover .equipment-subtitle {
    color: #D5B36B;
}

.core-equipment-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.equipment-btn-primary {
    padding: 15px 40px;
    background: #D5B36B;
    color: #fff;
    text-decoration: none;
    border: 1px solid #D5B36B;
    font-size: 16px;
    transition: all 0.3s ease;
}

.equipment-btn-primary:hover {
    background: #c9a25a;
    border-color: #c9a25a;
}

.equipment-btn-secondary {
    padding: 15px 40px;
    background: transparent;
    color: #D5B36B;
    text-decoration: none;
    border: 1px solid #D5B36B;
    font-size: 16px;
    transition: all 0.3s ease;
}

.equipment-btn-secondary:hover {
    background: #D5B36B;
    color: #fff;
}

@media (max-width: 1600px) {
    .core-equipment-container {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .core-equipment-bg {
        padding: 40px 0;
    }

    .core-equipment-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .core-equipment-list {
        flex-direction: column;
        gap: 20px;
    }

    .core-equipment-item {
        margin: 0;
        padding: 30px 20px;
    }

    .equipment-icon {
        width: 60px;
        height: 60px;
    }

    .equipment-title {
        font-size: 16px;
    }

    .equipment-subtitle {
        font-size: 12px;
    }

    .core-equipment-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .equipment-btn-primary,
    .equipment-btn-secondary {
        padding: 12px 30px;
        font-size: 14px;
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
}

.reviews-section {
    padding: 80px 0;
    background: #fff;
}

.reviews-container {
    width: 1580px;
    margin: 0 auto;
}

.reviews-content {
     /* animation: fadeInUp 1s ease; */
}

.reviews-title {
    font-size: 32px;
    font-weight: bold;
    color: #192C64;
    text-align: center;
    margin-bottom: 50px;
}

.reviews-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.reviews-prev,
.reviews-next {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.reviews-prev img,
.reviews-next img {
    width: 30px;
    height: 30px;
}

.reviews-carousel {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
}

.review-card {
    flex: 0 0 calc(33.333% - 20px);
    margin-right: 20px;
    position: relative;
}

.review-bg {
    background-image: url('../images/bg3.jpg');
    background-size: cover;
    background-position: center;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 300px;
}

.review-star {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

.review-title {
    font-size: 36px;
    font-weight: bold;
    color: #192C64;
    margin-bottom: 10px;
}

.review-subtitle {

    color: #192C64;
    margin-bottom: 20px;
    line-height: 1.5;
}

.review-badge {
    padding: 10px 20px;
    border: 1px solid #192C64;
    background: rgba(25, 44, 100, 0.1);
    color: #192C64;
    font-size: 14px;
    margin-bottom: 20px;
}

.review-author {
    
    color: #192C64;
}

.reviews-pagination {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.reviews-pagination-item {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #192C64;
    cursor: pointer;
    transition: background 0.3s ease;
}

.reviews-pagination-item.active {
    background: #D5B36B;
}

.reviews-link-container {
    text-align: center;
    margin-top: 40px;
}

.reviews-link {
    display: inline-block;
    padding: 15px 50px;
    background: #D5B36B;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s ease;
}

.reviews-link:hover {
    background: #c9a25a;
}

@media (max-width: 1600px) {
    .reviews-container {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 40px 0;
    }

    .reviews-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .reviews-carousel-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .reviews-prev,
    .reviews-next {
        width: 40px;
        height: 40px;
    }

    .reviews-prev img,
    .reviews-next img {
        width: 24px;
        height: 24px;
    }

    .review-card {
        flex: 0 0 calc(100% - 10px);
        margin-right: 10px;
    }

    .review-bg {
        padding: 30px 20px;
        min-height: 250px;
    }

    .review-star {
        width: 60px;
    }

    .review-title {
        font-size: 18px;
    }

    .review-subtitle {
        font-size: 12px;
    }

    .review-badge {
        padding: 6px 15px;
        font-size: 11px;
    }

    .review-author {
        font-size: 12px;
    }

    .reviews-pagination-item {
        width: 10px;
        height: 10px;
        gap: 10px;
    }

    .reviews-link {
        padding: 12px 30px;
        font-size: 14px;
    }
}

.scenes-section {
    padding: 80px 0;
    background: #fff;
}

.scenes-container {
    width: 1580px;
    margin: 0 auto;
}

.scenes-content {
     /* animation: fadeInUp 1s ease; */
}

.scenes-title {
    font-size: 32px;
    font-weight: bold;
    color: #192C64;
    text-align: center;
    margin-bottom: 50px;
}

.scenes-main {
    display: flex;
    gap: 0;
}

.scenes-left {
    flex: 5;
    position: relative;
}

.scenes-image-container {
    position: relative;
}

.scene-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
}

.scene-image.active {
    position: relative;
    display: block;
}

.scene-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.scene-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 30px;
    background: rgba(25, 44, 100, 0.8);
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
}

.scenes-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.scene-category {
    padding: 25px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #eee;
}

.scene-category:first-child {
    border-top: 1px solid #eee;
}

.scene-category:hover {
    background: #f8f8f8;
}

.scene-category.active {
    background: #D5B36B;
}

.category-title {
    font-size: 18px;
    font-weight: bold;
    color: #192C64;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.category-subtitle {
    font-size: 13px;
    color: #666;
    transition: color 0.3s ease;
}

.scene-category.active .category-title {
    color: #192C64;
}

.scene-category.active .category-subtitle {
    color: #192C64;
}

@media (max-width: 1600px) {
    .scenes-container {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .scenes-section {
        padding: 40px 0;
    }

    .scenes-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .scenes-main {
        flex-direction: column;
    }

    .scenes-left {
        order: 2;
        margin-top: 20px;
    }

    .scenes-right {
        order: 1;
        flex-direction: row;
        flex-wrap: wrap;
        border-top: 1px solid #eee;
    }

    .scene-category {
        flex: 0 0 50%;
        border-top: none;
        border-bottom: 1px solid #eee;
        border-left: 1px solid #eee;
        padding: 20px 15px;
        text-align: center;
    }

    .scene-category:first-child {
        border-top: none;
        border-left: none;
    }

    .category-title {
        font-size: 16px;
    }

    .category-subtitle {
        font-size: 12px;
    }

    .scene-text {
        padding: 15px 20px;
        font-size: 12px;
    }
}

.cooperation-section {
    padding: 80px 0;
    background: url('../images/jmbg.jpg') no-repeat center center/cover;
}

.cooperation-container {
    width: 1580px;
    margin: 0 auto;
}

.cooperation-content {
     /* animation: fadeInUp 1s ease; */
}

.cooperation-title {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
 
    padding: 15px 30px;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.cooperation-main {
    display: flex;
    gap: 30px;
    background: rgba(255, 255, 255, 0.1);
}

.cooperation-left {
    flex: 1;
}

.cooperation-main-img {
    margin-bottom: 15px;
}

.cooperation-main-img img {
    width: 100%;
    height: auto;
}

.cooperation-sub-imgs {
    display: flex;
    gap: 15px;
}

.cooperation-sub-item {
    flex: 1;
    position: relative;
}

.cooperation-sub-item img {
    width: 100%;
    height: auto;
}

.cooperation-sub-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
}

.cooperation-sub-overlay span {
    color: #fff;
    font-size: 16px;
}

.cooperation-right {
    flex: 1;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cooperation-right-title {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 30px;
}

.cooperation-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.cooperation-list li {
    color: #fff;
    font-size: 15px;
    line-height: 2;
    margin-bottom: 15px;
}

.cooperation-link {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #192C64;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    align-self: flex-start;
    transition: background 0.3s ease;
}

.cooperation-link:hover {
    background: #D5B36B;
    color: #192C64;
}

@media (max-width: 1600px) {
    .cooperation-container {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .cooperation-section {
        padding: 40px 0;
    }

    .cooperation-title {
        font-size: 24px;
        margin-bottom: 30px;
        padding: 10px 20px;
    }

    .cooperation-main {
        flex-direction: column;
        gap: 20px;
    }

    .cooperation-sub-imgs {
        gap: 10px;
    }

    .cooperation-sub-overlay {
        padding: 10px;
    }

    .cooperation-sub-overlay span {
        font-size: 14px;
    }

    .cooperation-right {
        padding: 30px 20px;
    }

    .cooperation-right-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .cooperation-list li {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .cooperation-link {
        padding: 10px 25px;
        font-size: 14px;
        align-self: center;
    }
}

.jobs-section {
    padding: 80px 0;
    background: #fff;
}

.jobs-container {
    width: 1580px;
    margin: 0 auto;
}

.jobs-content {
     /* animation: fadeInUp 1s ease; */
}

.jobs-title {
    font-size: 32px;
    font-weight: bold;
    color: #192C64;
    text-align: center;
    margin-bottom: 50px;
}

.jobs-list {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.job-card {
    flex: 1;
}

.job-bg {
    background-image: url('../images/jbbg.png');
    background-size: cover;
    background-position: center;
    padding: 30px 25px;
    min-height: 400px;
}

.job-top-tag {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #BE1A21;
    background: rgba(190, 26, 33, 0.3);
    color: #BE1A21;
    font-size: 14px;
    text-align: center;
    margin: 0 auto 20px;
    display: block;
    width: fit-content;
}

.job-position {
    font-size: 22px;
    font-weight: bold;
    color: #2F364C;
    text-align: center;
    margin-bottom: 15px;
}

.job-salary {
    font-size: 18px;
    color: #D5B36B;
    text-align: center;
    margin-bottom: 25px;
    font-weight: bold;
}

.job-requirements {
    text-align: left;
}

.job-requirements-title {
    font-size: 15px;
    font-weight: bold;
    color: #2F364C;
    margin-bottom: 10px;
}

.job-requirements-text {
    font-size: 13px;
    color: #2F364C;
    margin-bottom: 8px;
    line-height: 1.6;
}

.jobs-benefits {
    background-image: url('../images/jb.png');
    background-size: cover;
    background-position: center;
    padding: 25px;
    text-align: center;
    margin-bottom: 30px;
}

.jobs-benefits p {
    color: #fff;
    font-size: 16px;
    margin: 0;
}

.jobs-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.jobs-link {
    padding: 12px 35px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.jobs-link.primary {
    background: #D5B36B;
    color: #fff;
    border: 1px solid #D5B36B;
}

.jobs-link.primary:hover {
    background: #c9a25a;
    border-color: #c9a25a;
}

.jobs-link.secondary {
    background: transparent;
    color: #192C64;
    border: 1px solid #192C64;
}

.jobs-link.secondary:hover {
    background: #192C64;
    color: #fff;
}

@media (max-width: 1600px) {
    .jobs-container {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .jobs-section {
        padding: 40px 0;
    }

    .jobs-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .jobs-list {
        flex-direction: column;
        gap: 20px;
    }

    .job-bg {
        padding: 25px 20px;
        min-height: auto;
    }

    .job-top-tag {
        padding: 6px 15px;
        font-size: 12px;
        margin-bottom: 15px;
    }

    .job-position {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .job-salary {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .job-requirements-title {
        font-size: 14px;
    }

    .job-requirements-text {
        font-size: 12px;
    }

    .jobs-benefits {
        padding: 20px;
    }

    .jobs-benefits p {
        font-size: 14px;
    }

    .jobs-actions {
        flex-direction: column;
        gap: 15px;
    }

    .jobs-link {
        padding: 10px 25px;
        font-size: 14px;
        text-align: center;
    }
}

.news-section {
    padding: 80px 0;
    background: #fff;
}

.news-container {
    width: 1580px;
    margin: 0 auto;
}

.news-content {
     /* animation: fadeInUp 1s ease; */
}

.news-title2 {
    font-size: 32px;
    font-weight: bold;
    color: #192C64;
    text-align: center;
    margin-bottom: 50px;
}

.news-list {
     display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.news-card {
    flex: 1;
    padding: 30px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.news-card:hover {
    background: #192C64;
}

.news-date {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.news-card:hover .news-date {
    color: #fff;
}

.news-heading {
    font-size: 18px;
    font-weight: bold;
    color: #192C64;
    margin-bottom: 20px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-card:hover .news-heading {
    color: #fff;
}

.news-image {
    margin-bottom: 20px;
}

.news-image img {
    width: 100%;
    height: auto;
}

.news-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 25px;
    transition: color 0.3s ease;
}

.news-card:hover .news-desc {
    color: #fff;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #192C64;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid #192C64;
    transition: all 0.3s ease;
}

.news-link img {
    width: 16px;
    height: auto;
    transition: filter 0.3s ease;
}

.news-card:hover .news-link {
    background: #D5B36B;
    border-color: #D5B36B;
    color: #192C64;
}

.news-card:hover .news-link img {
    filter: brightness(0) invert(1);
}

.news-more {
    text-align: center;
}

.news-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #192C64;
    text-decoration: none;
    padding: 12px 30px;
    border: 1px solid #192C64;
    transition: all 0.3s ease;
}

.news-more-link img {
    width: 16px;
    height: auto;
}

.news-more-link:hover {
    background: #192C64;
    color: #fff;
}

.news-more-link:hover img {
    filter: brightness(0) invert(1);
}

@media (max-width: 1600px) {
    .news-container {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 40px 0;
    }

    .news-title2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .news-list {
        flex-direction: column;
        gap: 20px;
    }

    .news-card {
        padding: 20px;
    }

    .news-heading {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .news-desc {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .news-link {
        padding: 8px 15px;
        font-size: 13px;
    }

    .news-more-link {
        padding: 10px 25px;
        font-size: 14px;
    }
}

.footer-section {
    padding: 60px 0 30px;
    background: #192C64;
}

.footer-container {
    width: 1580px;
    margin: 0 auto;
}

.footer-content {
     /* animation: fadeInUp 1s ease; */
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.footer-logo img {
    max-height: 80px;
}

.footer-nav {
    display: flex;
    gap: 35px;
}

.footer-nav-item {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav-item:hover,
.footer-nav-item.active {
    color: #D5B36B;
}

.footer-middle {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 30px;
    height: auto;
}

.contact-title {
    font-size: 14px;
    color: #fff;
    margin-bottom: 5px;
}

.contact-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-qr {
    display: flex;
    gap: 40px;
}

.qr-item {
    text-align: center;
}

.qr-img {
    width: 120px;
    height: 120px;
    background: #fff;
    margin-bottom: 10px;
}

.qr-title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1600px) {
    .footer-container {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 25px;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 35px;
    }

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

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .footer-nav-item {
        font-size: 14px;
    }

    .footer-middle {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 30px;
    }

    .footer-contact {
        gap: 20px;
    }

    .contact-icon {
        width: 25px;
    }

    .contact-title,
    .contact-text {
        font-size: 13px;
    }

    .footer-qr {
        justify-content: center;
        gap: 30px;
    }

    .qr-img {
        width: 100px;
        height: 100px;
    }

    .qr-title {
        font-size: 12px;
    }

    .footer-copyright {
        font-size: 12px;
    }
}

.about-banner {
  
    padding: 200px 0;
    position: relative;
}

.about-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.about-banner-container {
    width: 1580px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-banner-content {
     /* animation: fadeInUp 1s ease; */
}

.about-banner-title {
    font-size: 42px;
    font-weight: bold;
    color: #D5B36B;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-banner-subtitle {
    font-size: 18px;
    color: #D5B36B;
    letter-spacing: 8px;
}

@media (max-width: 1600px) {
    .about-banner-container {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .about-banner {
        padding: 80px 0;
    }

    .about-banner-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .about-banner-subtitle {
        font-size: 14px;
        letter-spacing: 4px;
    }
}

.breadcrumb-section {
    padding: 20px 0;
    background: #f5f5f5;
}

.breadcrumb-container {
    width: 1580px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-item {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item:hover {
    color: #D5B36B;
}

.breadcrumb-item.active {
    color: #192C64;
    font-weight: bold;
}

.breadcrumb-separator {
    color: #999;
    font-size: 14px;
}

@media (max-width: 1600px) {
    .breadcrumb-container {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 15px 0;
    }

    .breadcrumb-item,
    .breadcrumb-separator {
        font-size: 12px;
    }
}

.about-intro {
    padding: 80px 0;
    background: #fff;
}

.about-intro-container {
    width: 1580px;
    margin: 0 auto;
}

.about-intro-content {
    display: flex;
    gap: 40px;
     /* animation: fadeInUp 1s ease; */
}

.about-intro-left {
  width: 60%;
}

.about-intro-subtitle {
    font-weight: bold;
    color: #192C64;
    margin-bottom: 15px;
}

.about-intro-title {
    font-size: 32px;
    font-weight: bold;
    color: #192C64;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-intro-text {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-intro-list {
    display: flex;
    gap: 0;
}

.about-intro-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-right: 1px solid #D5B36B;
}

.about-intro-item:last-child {
    border-right: none;
}

.about-intro-item:hover,
.about-intro-item.active {
    background: #D5B36B;
}

.intro-icon {
    width: 45px;
    height: auto;
    margin-bottom: 15px;
    transition: filter 0.3s ease;
}

.about-intro-item:hover .intro-icon,
.about-intro-item.active .intro-icon {
    filter: brightness(0) invert(1);
}

.intro-title {
    font-size: 13px;
    font-weight: bold;
    color: #192C64;
    text-align: center;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.about-intro-item:hover .intro-title,
.about-intro-item.active .intro-title {
    color: #fff;
}

.about-intro-right {
    flex: 1;
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #192C64;
}

.video-container video {
    width: 100%;
    height: 100%;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  

    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-play-btn:hover {
    
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn img {
    width: 80px;
    height: auto;
    margin-left: 5px;
}

.video-play-btn.hidden {
    display: none;
}

@media (max-width: 1600px) {
    .about-intro-container {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .about-intro {
        padding: 40px 0;
    }

    .about-intro-content {
        flex-direction: column;
        gap: 30px;
    }

    .about-intro-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .about-intro-text {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .about-intro-list {
        flex-wrap: wrap;
    }

    .about-intro-item {
        flex: 0 0 50%;
        border-right: 1px solid #D5B36B;
        border-bottom: 1px solid #D5B36B;
        padding: 20px 10px;
    }

    .about-intro-item:nth-child(2n) {
        border-right: none;
    }

    .about-intro-item:last-child {
        border-bottom: 1px solid #D5B36B;
    }

    .intro-icon {
        width: 35px;
        margin-bottom: 10px;
    }

    .intro-title {
        font-size: 12px;
    }

    .video-play-btn {
        width: 60px;
        height: 60px;
    }

    .video-play-btn img {
        width: 22px;
    }
}

.about-culture {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-culture-container {
    width: 1580px;
    margin: 0 auto;
}

.about-culture-content {
     /* animation: fadeInUp 1s ease; */
}

.culture-header {

    margin-bottom: 50px;
}

.culture-subtitle {
 
    color: #192C64;
    font-weight: bold;
    margin-bottom: 10px;
}

.culture-title {
    font-size: 32px;
    font-weight: bold;
    color: #192C64;
}

.culture-grid {
    display: flex;
    flex-wrap: wrap;
}

.culture-item {
    width: 25%;
    display: flex;
    flex-direction: column;
}

.item-top {
    flex-direction: column;
}



.culture-image {
    width: 100%;
    flex: 1;
    height: 260px;
}

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

.culture-text {
    padding: 35px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    height: 260px;
}

.text-icon-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.icon-line {
    width: 4px;
    height: 30px;
    background: #192C64;
}

.text-icon {
    width: 30px;
    height: auto;
}

.text-title {
    font-size: 20px;
    font-weight: bold;
    color: #192C64;
    margin-bottom: 15px;
}

.text-desc {
    font-size: 14px;
    color: #192C64;
    line-height: 1.7;
}

@media (max-width: 1600px) {
    .about-culture-container {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .about-culture {
        padding: 40px 0;
    }

    .culture-header {
        margin-bottom: 30px;
    }

    .culture-title {
        font-size: 24px;
    }

    .culture-item {
        width: 100%;
    }

    .culture-text {
        padding: 25px 20px;
    }

    .text-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .text-desc {
        font-size: 13px;
    }

    .icon-line {
        height: 25px;
    }

    .text-icon {
        width: 25px;
    }
}

.about-founder {
    padding: 80px 0;
    background: #fff;
}

.about-founder-container {
    width: 1580px;
    margin: 0 auto;
}

.about-founder-content {
     /* animation: fadeInUp 1s ease; */
}

.founder-title {
    font-size: 32px;
    font-weight: bold;
    color: #192C64;
    margin-bottom: 50px;
}

.founder-main {
    display: flex;
    gap: 60px;
}

.founder-left {
    flex: 1;
}

.founder-name-wrap {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 30px;
}

.founder-name {
    font-size: 32px;
    font-weight: bold;
    color: #000;
}

.founder-position {
    font-size: 16px;
    color: #666;
}

.founder-text p {
  
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
}

.founder-list {
    margin-top: 25px;
    padding-left: 20px;
}

.founder-list li {
   
    color: #333;
    line-height: 1.8;
    margin-bottom: 10px;
    list-style: none;
    position: relative;
}

.founder-list li::before {
    content: "●";
    color: #D5B36B;
    position: absolute;
    left: -20px;
    font-size: 12px;
}

.founder-right {
    flex: 0 0 45%;
}

.founder-right img {
    width: 100%;
    height: auto;
}

@media (max-width: 1600px) {
    .about-founder-container {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .about-founder {
        padding: 40px 0;
    }

    .founder-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .founder-main {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .founder-name {
        font-size: 28px;
    }

    .founder-position {
        font-size: 14px;
    }

    .founder-text p,
    .founder-list li {
        font-size: 14px;
    }
}

.about-features {
    padding: 80px 0;
    background-image: url('../images/tdbg.jpg');
    background-size: cover;
    background-position: center;
}

.about-features-container {
    width: 1580px;
    margin: 0 auto;
}

.about-features-content {
     /* animation: fadeInUp 1s ease; */
}

.features-title {
    font-size: 32px;
    font-weight: bold;
    color: #192C64;
    margin-bottom: 50px;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    width: calc(33.333% - 14px);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.feature-item:hover {
    background: #192C64 !important;
}

.feature-item:hover .feature-title,
.feature-item:hover .feature-desc,
.feature-item:hover .feature-number,
.feature-item:hover .highlight-text {
    color: #fff !important;
}

.feature-item:hover .feature-line {
    background: #D5B36B !important;
}

.feature-top {
    flex: 1;
}

.feature-bottom {
    margin-top: auto;
}

.feature-title {
    font-size: 22px;
    font-weight: bold;
    color: #192C64;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.feature-line {
    width: 60px;
    height: 3px;
    background: #D5B36B;
    margin: 0 auto 25px;
    transition: background 0.3s ease;
}

.feature-desc {
    font-size: 14px;
    color: #192C64;
    line-height: 1.7;
    margin-bottom: 30px;
    transition: color 0.3s ease;

}

.highlight-text {
    color: #D5B36B;
    font-weight: bold;
}

.feature-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.feature-number {
    font-size: 13px;
    color: #192C64;
    transition: color 0.3s ease;
}

@media (max-width: 1600px) {
    .about-features-container {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .about-features {
        padding: 40px 0;
    }

    .features-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .features-grid {
        gap: 15px;
    }

    .feature-item {
        width: 100%;
        padding: 30px 20px;
    }

    .feature-title {
        font-size: 18px;
    }

    .feature-desc {
        font-size: 13px;
    }
}

.about-honors {
    padding: 80px 0;
    background: #fff;
}

.about-honors-container {
    width: 1580px;
    margin: 0 auto;
}

.about-honors-content {
     /* animation: fadeInUp 1s ease; */
}

.honors-header {
    margin-bottom: 50px;
}

.honors-subtitle {
    color: #192C64;
    font-weight: bold;
    margin-bottom: 10px;
}

.honors-title {
    font-size: 32px;
    font-weight: bold;
    color: #192C64;
}

.honors-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.honor-item {
    flex: 1;
    text-align: center;
}

.honor-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.honor-year {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.honor-name {
    font-size: 14px;
    color: #192C64;
}

@media (max-width: 1600px) {
    .about-honors-container {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .about-honors {
        padding: 40px 0;
    }

    .honors-header {
        margin-bottom: 30px;
    }

    .honors-title {
        font-size: 24px;
    }

    .honors-grid {
        flex-wrap: wrap;
        gap: 20px;
    }

    .honor-item {
        flex: 0 0 calc(50% - 10px);
    }
}

.product-list-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.product-list-container {
    width: 1580px;
    margin: 0 auto;
}

.product-list-content {
    display: flex;
    gap: 40px;
    animation: fadeInUpUp 1s ease;
}

.product-sidebar {
    width: 280px;
    flex-shrink: 0;
    background: #fff;
    padding: 30px;
}

.sidebar-title {
    font-size: 24px;
    font-weight: bold;
    color: #192C64;
    margin-bottom: 20px;
}

.sidebar-line {
    height: 1px;
    background: #ddd;
    margin-bottom: 25px;
}

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

.menu-item {
    margin-bottom: 10px;
}

.menu-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px 0;
}

.toggle-icon {
    font-size: 18px;
    color: #192C64;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.toggle-icon.active {
    transform: rotate(45deg);
}

.toggle-text {
    font-size: 16px;
    font-weight: bold;
    color: #192C64;
}

.sub-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 0 30px;
    display: none;
}

.sub-menu.active {
    display: block;
}

.sub-item {
    padding: 10px 0;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.sub-item:hover {
    color: #D5B36B;
}

.product-grid {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.product-card {
    width: calc(33.333% - 17px);
    background: #fff;
    padding: 20px;
    box-sizing: border-box;
}

.product-image {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.product-title {
    font-size: 18px;
    font-weight: bold;
    color: #192C64;
    margin-bottom: 8px;
}

.product-subtitle {
    font-size: 14px;
    color: #D5B36B;
    margin-bottom: 12px;
}

.product-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-link {
    display: block;
    text-align: center;
    padding: 12px 0;
    border: 1px solid #192C64;
    color: #192C64;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.product-link:hover {
    background: #D5B36B;
    border-color: #D5B36B;
    color: #fff;
}

@media (max-width: 1600px) {
    .product-list-container {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .product-list-section {
        padding: 30px 0;
    }

    .product-list-content {
        flex-direction: column;
        gap: 30px;
    }

    .product-sidebar {
        width: 100%;
    }

    .product-grid {
        gap: 20px;
    }

    .product-card {
        width: 100%;
    }
}

.product-views-section {
    padding: 50px 0;
    background: #fff;
}

.product-views-container {
    width: 1580px;
    margin: 0 auto;
}

.product-view-item {
    margin-bottom: 30px;
     /* animation: fadeInUp 1s ease; */
}

.product-view-item:last-child {
    margin-bottom: 0;
}

.view-title {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background: #192C64;
    padding: 12px 30px;
    display: inline-block;
    margin: 0 auto 20px;
    display: table;
}

.view-image {
    width: 100%;
    height: auto;
}

@media (max-width: 1600px) {
    .product-views-container {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .product-views-section {
        padding: 30px 0;
    }

    .view-title {
        font-size: 16px;
        padding: 10px 20px;
    }
}

.project-intro-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.project-intro-container {
    width: 1580px;
    margin: 0 auto;
}

.project-intro-content {
    display: flex;
    gap: 50px;
     /* animation: fadeInUp 1s ease; */
}

.project-left {
    flex: 0 0 45%;
}

.project-image {
    width: 100%;
    height: auto;
}

.project-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-title {
    font-size: 32px;
    font-weight: bold;
    color: #192C64;
    text-align: center;
    margin-bottom: 10px;
}

.project-subtitle {
    font-size: 16px;
    color: #D5B36B;
    text-align: center;
    margin-bottom: 30px;
}

.project-desc p {
    font-size: 15px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
}

.project-desc p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1600px) {
    .project-intro-container {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .project-intro-section {
        padding: 40px 0;
    }

    .project-intro-content {
        flex-direction: column;
        gap: 30px;
    }

    .project-title {
        font-size: 24px;
    }

    .project-subtitle {
        font-size: 14px;
    }

    .project-desc p {
        font-size: 14px;
    }
}

.scene-cases-section {
    padding: 60px 0;
    background: #fff;
}

.scene-cases-container {
    width: 1580px;
    margin: 0 auto;
}

.scene-header {
    text-align: center;
    margin-bottom: 50px;
}

.scene-title {
    font-size: 32px;
    font-weight: bold;
    color: #192C64;
    margin-bottom: 15px;
}

.scene-line {
    width: 60px;
    height: 3px;
    background: #D5B36B;
    margin: 0 auto 20px;
}

.scene-subtitle {
    font-size: 18px;
    font-weight: bold;
    color: #192C64;
}

.scene-cases-list {
     /* animation: fadeIn 1s ease; */
}

.scene-case-item {
    display: flex;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.scene-case-item:last-child {
    margin-bottom: 0;
}

.case-image {
    flex: 0 0 50%;
}

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

.case-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-title {
    font-size: 24px;
    font-weight: bold;
    color: #192C64;
    margin-bottom: 10px;
}

.case-tag {
    font-size: 14px;
    color: #D5B36B;
    margin-bottom: 25px;
}

.case-desc p {
    font-size: 14px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 12px;
}

.case-desc p:last-child {
    margin-bottom: 0;
}

.case-desc strong {
    color: #192C64;
}

@media (max-width: 1600px) {
    .scene-cases-container {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .scene-cases-section {
        padding: 40px 0;
    }

    .scene-title {
        font-size: 24px;
    }

    .scene-subtitle {
        font-size: 16px;
    }

    .scene-case-item {
        flex-direction: column;
    }

    .scene-case-item.even {
        flex-direction: column-reverse;
    }

    .case-image {
        flex: none;
    }

    .case-content {
        padding: 25px 20px;
    }

    .case-title {
        font-size: 20px;
    }

    .case-desc p {
        font-size: 13px;
    }
}

.community-news-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.community-news-container {
    width: 1580px;
    margin: 0 auto;
}

.community-news-title {
    font-size: 32px;
    font-weight: bold;
    color: #192C64;
    margin-bottom: 40px;
}

.community-news-list {
     /* animation: fadeIn 1s ease; */
}

.community-news-item {
    display: flex;
    gap: 25px;
    padding: 25px;
    background: #fff;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.community-news-item:last-child {
    margin-bottom: 0;
}

.news-image {
    flex: 0 0 30%;
}

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-date {
    flex: 0 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #eee;
}

.date-year {
    font-size: 24px;
    font-weight: bold;
    color: #192C64;
}

.date-month {
    font-size: 14px;
    color: #999;
    margin-top: 5px;
}

.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-title {
    font-size: 18px;
    font-weight: bold;
    color: #192C64;
    margin-bottom: 15px;
}

.news-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}

.news-link {
    align-self: flex-end;
    padding: 10px 30px;
    background: #D5B36B;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s ease;
}

.news-link:hover {
    background: #c9a25a;
}

@media (max-width: 1600px) {
    .community-news-container {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .community-news-section {
        padding: 40px 0;
    }

    .community-news-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .community-news-item {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .news-image {
        flex: none;
    }

    .news-image img {
        height: 180px;
    }

    .news-date {
        flex: none;
        flex-direction: row;
        gap: 10px;
        border-right: none;
        padding-bottom: 15px;
        border-bottom: 1px solid #eee;
    }

    .news-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .news-desc {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .news-link {
        align-self: center;
        width: 100%;
        text-align: center;
    }
}

.faq-section {
    padding: 60px 0;
    background: #fff;
}

.faq-container {
    width: 1580px;
    margin: 0 auto;
}

.faq-title {
    font-size: 32px;
    font-weight: bold;
    color: #192C64;
    margin-bottom: 40px;
}

.faq-list {
     /* animation: fadeIn 1s ease; */
}

.faq-item {
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: rgba(25, 44, 100, 0.2);
    transition: background 0.3s ease;
}

.faq-item.active {
    background: rgba(213, 179, 107, 0.2);
}

.faq-header {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
}

.faq-question-num {
    font-size: 28px;
    font-weight: bold;
    color: #192C64;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question-num {
    color: #D5B36B;
}

.faq-question {
    flex: 1;
    font-size: 20px;
    font-weight: bold;
    color: #192C64;
}

.faq-arrow {
    width: 30px;
    height: auto;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 30px 30px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.answer-num {
    font-size: 20px;
    font-weight: bold;
    color: #D5B36B;
    margin-bottom: 15px;
    display: block;
}

.faq-answer p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 1600px) {
    .faq-container {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .faq-header {
        padding: 20px 15px;
    }

    .faq-question-num {
        font-size: 22px;
        margin-right: 15px;
    }

    .faq-question {
        font-size: 15px;
    }

    .faq-arrow {
        width: 24px;
    }

    .faq-answer {
        padding: 0 15px 20px;
    }

    .answer-num {
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 13px;
    }
}

.join-partner-section {
    background-image: url('../images/jmbg2.jpg');
    background-size: cover;
    background-position: center;
    margin: 80px 0;
     /* animation: fadeIn 1s ease; */
}

.partner-container {
    display: flex;
}

.partner-item {
    display: flex;
    text-align: center;
    flex-direction: column;
    padding: 50px 40px;
    position: relative;
}

.partner-left {
    width: 35%;
}

.partner-center {
    width: 30%;
    background: rgba(25, 44, 100, 0.8);
}

.partner-right {
    width: 35%;
}

.partner-pretitle {
      font-size: 28px;
    font-weight: bold;
      color: #192C64;
    margin-bottom: 15px;
}

.partner-center .partner-pretitle {
    color: #fff;
}

.partner-title {
    font-size: 28px;
    font-weight: bold;
    color: #192C64;
    margin-bottom: 15px;
}

.partner-center .partner-title {
    color: #fff;
}

.partner-line {
    width: 60px;
    height: 3px;
    margin: 0 auto;
    background: #D5B36B;
    margin-bottom: 20px;
}

.partner-subtitle {
    font-size: 20px;
    color: #192C64;
    margin-bottom: auto;
}

.partner-center .partner-subtitle {
    color: #fff;
}

.partner-desc {
    margin: 50px 0;
    text-align: left;
}

.partner-desc p {
 
    color: #fff;
    line-height: 1.7;
    margin-bottom: 15px;
}

.partner-desc p:last-child {
    margin-bottom: 0;
}

.partner-desc strong {
    color: #D5B36B;
}

.partner-number {
    line-height: 1.7;
    color: #192C64;
    text-align: center;
    margin-top: 20px;
}

.partner-center .partner-number {
    color: #fff;
}

@media (max-width: 768px) {
    .join-partner-section {
        padding: 40px 0;
    }

    .partner-container {
        flex-direction: column;
        height: auto;
    }

    .partner-item {
        width: 100% !important;
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .partner-item:last-child {
        margin-bottom: 0;
    }

    .partner-title {
        font-size: 22px;
    }

    .partner-subtitle {
        font-size: 14px;
    }

    .partner-desc p {
        font-size: 13px;
    }

    .partner-number {
        font-size: 11px;
    }
}

.join-rd-section {
    padding: 80px 0;
    background: #fff;
}

.join-rd-container {
    width: 1580px;
    margin: 0 auto;
}

.join-rd-content {
     /* animation: fadeIn 1s ease; */
}

.rd-subtitle {
    font-size: 16px;
    font-weight: bold;
    color: #192C64;
    margin-bottom: 10px;
}

.rd-title {
    font-size: 36px;
    font-weight: bold;
    color: #192C64;
    margin-bottom: 20px;
    line-height: 1.3;
}

.rd-line {
    width: 120px;
    height: 3px;
    background: #D5B36B;
    margin-bottom: 30px;
}

.rd-mtitle {
    font-size: 24px;
    color: #192C64;
    margin-bottom: 35px;
}

.rd-desc p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.rd-desc p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1600px) {
    .join-rd-container {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .join-rd-section {
        padding: 40px 0;
    }

    .rd-subtitle {
        font-size: 14px;
    }

    .rd-title {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .rd-line {
        width: 80px;
        margin-bottom: 20px;
    }

    .rd-mtitle {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .rd-desc p {
        font-size: 14px;
    }
}

.join-contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.join-contact-container {
    width: 1580px;
    margin: 0 auto;
}

.join-contact-content {
    display: flex;
     /* animation: fadeIn 1s ease; */
}

.contact-left {
    flex: 1;
    padding: 40px;
    background: #fff;
}

.contact-titled {
    font-size: 28px;
    font-weight: bold;
    color: #192C64;
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.form-input {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 14px;
    color: #333;
    background: #fff;
}

.form-input::placeholder {
    color: #999;
}

.form-select {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 14px;
    color: #333;
    background: #fff;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form-textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 14px;
    color: #333;
    background: #fff;
    min-height: 120px;
    resize: none;
}

.form-textarea::placeholder {
    color: #999;
}

.form-submit {
    padding: 15px 40px;
    background: #192C64;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 15px;
    align-self: center;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
}

.form-submit:hover {
    background: #2d3f7f;
}

.contact-right {
    flex: 1;
}

.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1600px) {
    .join-contact-container {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .join-contact-section {
        padding: 40px 0;
    }

    .join-contact-content {
        flex-direction: column;
    }

    .contact-left {
        padding: 30px 20px;
        order: 2;
    }

    .contact-right {
        order: 1;
    }

    .contact-image {
        height: 250px;
    }

    .contact-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 12px;
        font-size: 13px;
    }

    .form-submit {
        width: 100%;
        justify-content: center;
    }
}

.joinlist-jobs-section {
    padding: 60px 0;
    background: #fff;
}

.joinlist-jobs-container {
    width: 1580px;
    margin: 0 auto;
}

.joinlist-jobs-list {
     /* animation: fadeIn 1s ease; */
}

.joblist-item {
    margin-bottom: 30px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.joblist-item:last-child {
    margin-bottom: 0;
}

.joblist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: #fff;
    cursor: pointer;
}

.joblist-title {
    font-size: 22px;
    font-weight: bold;
    color: #192C64;
    transition: color 0.3s ease;
}

.joblist-item.active .joblist-title {
    color: #D5B36B;
}

.joblist-arrow {
    width: 24px;
    height: auto;
    transition: transform 0.3s ease;
}

.joblist-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-top: 1px solid #eee;
}

.joblist-item.active .joblist-detail {
    max-height: 2000px;
}

.joblist-detail .joblist-detail-inner {
    display: flex;
    padding: 40px 30px;
}

.joblist-left {
    flex: 2;
    padding-right: 40px;
    border-right: 1px solid #eee;
}

.joblist-right {
    flex: 1;
    padding-left: 40px;
}

.joblist-subtitle {
    font-size: 18px;
    font-weight: bold;
    color: #192C64;
    margin-bottom: 20px;
}
.joblist-benefits p{
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 12px;
    position: relative;
  
}
.joblist-desc,
.joblist-benefits {
    margin-bottom: 30px;
}

.joblist-desc:last-child,
.joblist-benefits:last-child {
    margin-bottom: 0;
}
.joblist-desc p{
     font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 12px;
    position: relative;
    
}
.joblist-desc li,
.joblist-benefits li {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
}

.joblist-desc li:before,
.joblist-benefits li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #D5B36B;
}

.joblist-desc li:last-child,
.joblist-benefits li:last-child {
    margin-bottom: 0;
}

@media (max-width: 1600px) {
    .joinlist-jobs-container {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .joinlist-jobs-section {
        padding: 40px 0;
    }

    .joblist-header {
        padding: 20px;
    }

    .joblist-title {
        font-size: 18px;
    }

    .joblist-arrow {
        width: 20px;
    }

    .joblist-detail .joblist-detail-inner {
        flex-direction: column;
        padding: 30px 20px;
    }

    .joblist-left {
        flex: none;
        padding-right: 0;
        border-right: none;
        padding-bottom: 30px;
        border-bottom: 1px solid #eee;
    }

    .joblist-right {
        flex: none;
        padding-left: 0;
        padding-top: 30px;
    }

    .joblist-subtitle {
        font-size: 16px;
    }

    .joblist-desc li,
    .joblist-benefits li {
        font-size: 14px;
    }
}

.contact-info-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-info-container {
    width: 1580px;
    margin: 0 auto;
}

.contact-info-content {
    display: flex;
    gap: 40px;
     /* animation: fadeIn 1s ease; */
}

.contact-info-left {
    flex: 1;
}

.contact-company-name {
    font-size: 24px;
    font-weight: bold;
    color: #192C64;
    margin-bottom: 30px;
}

.contact-info-list {
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-title {
    font-size: 16px;
    font-weight: bold;
    color: #192C64;
    margin-bottom: 5px;
}

.info-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.contact-map {
    border: 1px solid #ddd;
}

.map-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.contact-info-right {
    flex: 1;
}

.contact-info-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-form-input {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 14px;
    color: #333;
    background: #fff;
}

.info-form-input::placeholder {
    color: #999;
}

.info-form-select {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 14px;
    color: #333;
    background: #fff;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.info-form-textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 14px;
    color: #333;
    background: #fff;
    min-height: 150px;
    resize: none;
}

.info-form-textarea::placeholder {
    color: #999;
}

.info-form-submit {
    padding: 15px 40px;
    background: #192C64;
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    align-self: flex-end;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
}

.info-form-submit:hover {
    background: #2d3f7f;
}

@media (max-width: 1600px) {
    .contact-info-container {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .contact-info-section {
        padding: 40px 0;
    }

    .contact-info-content {
        flex-direction: column;
        gap: 30px;
    }

    .contact-company-name {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .contact-info-item {
        margin-bottom: 20px;
    }

    .info-icon {
        width: 35px;
        height: 35px;
        margin-right: 12px;
    }

    .info-title {
        font-size: 15px;
    }

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

    .map-image {
        height: 220px;
    }

    .info-form-input,
    .info-form-select,
    .info-form-textarea {
        padding: 12px;
        font-size: 13px;
    }

    .info-form-textarea {
        min-height: 120px;
    }

    .info-form-submit {
        width: 100%;
        justify-content: center;
    }
}

.page-detail-section {
    padding: 60px 0;
    background: #fff;
}

.page-detail-container {
    width: 1580px;
    margin: 0 auto;
}

.page-detail-content {
     /* animation: fadeIn 1s ease; */
}

.page-detail-title {
    font-size: 32px;
    font-weight: bold;
    color: #192C64;
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.4;
}

.page-detail-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
}

.meta-item {
    font-size: 14px;
    color: #666;
}

.page-detail-divider {
    border-top: 1px dashed #ddd;
    margin-bottom: 40px;
}

.page-detail-body {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

.page-detail-body p {
    margin-bottom: 20px;
    text-indent: 2em;
}

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

@media (max-width: 1600px) {
    .page-detail-container {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .page-detail-section {
        padding: 40px 0;
    }

    .page-detail-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .page-detail-meta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .meta-item {
        font-size: 13px;
    }

    .page-detail-body {
        font-size: 14px;
    }

    .page-detail-body p {
        text-indent: 1.5em;
        margin-bottom: 15px;
    }
}
table{
        width: 100%;
    border-collapse: collapse;
}