        /* Hero Section */
        .hero {
            height: 861px;
            background-size: cover;
            background-position: center;
            position: relative;
            padding-top: 118px;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            color: #fff;
            padding: 120px 0;
            max-width: 730px;
        }
        
        .hero-title {
            font-size: 64px;
            font-weight: 300;
            margin-bottom: 20px;
        }
        
        .hero-text {
            font-size: 20px;
            line-height: 24px;
            margin-bottom: 20px;
        }
        
        .contact-info {
            /* margin-top: 30px; */
            font-size: 20px;
        }
        
        .contact-info p {
            margin-bottom: 10px;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #d8d8d8;
            color: #1e2b49;
            padding: 18px 15px;
            font-size: 16px;
            margin-top: 20px;
            transition: background-color 0.3s;
            border: none;
            cursor: pointer;
			width: 240px;
			height: 50px;
        }
        
        .btn i {
            margin-right: 8px;
        }
        
        .btn:hover {
            background-color: #1e2b49;
			color: #fff;
        }
        
        /* Stats Section */
        .stats-section {
            padding: 120px 0 80px;
            background-color: #fff;
        }
        
        .stats-container {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }
        
        .company-intro {
            width: 50%;
        }
        
        .company-title {
            font-size: 48px;
            margin-bottom: 20px;
			font-weight: 400;
        }
        
        .company-subtitle {
            font-size: 48px;
            margin-bottom: 30px;
            font-weight: 400;
        }
        
        .yellow-line {
            width: 124px;
            height: 6px;
            background-color: #ffd700;
            margin-bottom: 30px;
        }
        
        .stats-grid {
            width: 45%;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
        
        .stat-item {
            text-align: left;
        }
        
        .stat-number {
            font-size: 54px;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
        }
        
        .stat-text {
            font-size: 20px;
            color: #666;
			margin-top: 20px;
        }
        
        /* About Section */
        .about-section {
            padding-bottom: 80px;
            background-color: #fff;
        }
        
        .about-text {
            font-size: 20px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 20px;
        }
        
        /* Awards Section */
        .awards-section {
            padding: 80px 0;
            background-color: #f9f9f9;
        }
        
        .section-title {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 40px;
            color: #333;
        }
        
        .awards-container {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }
        
        .awards-intro {
            width: 40%;
        }
        
        .awards-text {
            font-size: 20px;
            line-height: 1.8;
            color: #666;
        }
        
        .awards-slider {
            width: 55%;
            position: relative;
        }
        
        .award-slide {
            display: none;
        }
        
        .award-slide.active {
            display: flex;
            justify-content: space-between;
        }
        
        .award-card {
            width: 48%;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .award-img {
            width: 100%;
            height: 320px;
            object-fit: cover;
        }
        
        .award-content {
        }
        
        .award-date {
            font-size: 13px;
            color: #999;
            margin-bottom: 10px;
			margin-top: 10px;
        }
        
        .award-title {
            font-size: 24px;
            line-height: 1.8;
            color: #333;
			font-weight: 400;
        }
        
        .slider-dots {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .slider-dot {
            width: 10px;
            height: 10px;
            background-color: #ddd;
            margin: 0 5px;
            cursor: pointer;
        }
        
        .slider-dot.active {
            background-color: #1a2b47;
        }
        
        /* Partners Section */
        .partners-section {
            padding: 80px 0;
            background-color: #1a2b47;
            color: #fff;
        }
        
        .partners-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }
        
        .partners-title {
            font-size: 48px;
            font-weight: bold;
        }
        
        .partners-btn {
            background-color: #d7d7d7;
            color: #1a2b47;
            border: 1px solid #fff;
            padding: 15px 50px;
            font-size: 16px;
			font-weight: 600;
            cursor: pointer;
        }
        
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 50px;
        }
        
        .partner-card {
            background-color: #fff;
            height: 130px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
        }
        
        .partner-logo {
            max-width: 100%;
            max-height: 80%;
        }
        
        /* Why Choose Us Section */
        .why-section {
            padding: 80px 0;
            background-color: #fff;
        }
        
        .why-container {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }
        
        .why-title-container {
            width: 30%;
        }
        
        .why-title {
            font-size: 48px;
            font-weight: 500;
            color: #333;
            margin-bottom: 20px;
        }
        
        .accordion-container {
            width: 65%;
        }
        
        .accordion {
            width: 100%;
        }
        
        .accordion-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            cursor: pointer;
        }
        
        .accordion-title {
            font-size: 28px;
            font-weight: 500;
            color: #333;
            display: flex;
            align-items: center;
        }
        
        .accordion-number {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-right: 15px;
        }
        
        .accordion-icon {
            font-size: 16px;
            transition: transform 0.3s;
        }
        
        .accordion-icon.up {
            transform: rotate(180deg);
        }
        
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding-left: 40px;
        }
        
        .accordion-content.active {
            max-height: 500px;
        }
        
        .accordion-text {
            font-size: 18px;
            line-height: 1.8;
            color: #666;
            padding-bottom: 20px;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .stats-container, .awards-container, .why-container {
                flex-direction: column;
            }
            
            .company-intro, .awards-intro, .stats-grid, .awards-slider, .why-title-container, .accordion-container {
                width: 100%;
            }
            
            .company-intro, .awards-intro, .why-title-container {
                margin-bottom: 40px;
            }
            
            .partners-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .footer-container {
                flex-direction: column;
            }
            
            .footer-links {
                margin-top: 30px;
                margin-left: 0;
            }
            
            .footer-qrcode {
                margin-top: 10px;
				float: left;
            }
         .footer-bottom1 {
            display: block;
        }
        .footer-bottom {
            display: none;
        }
			
        }
        
        @media (max-width: 768px) {
        /* Hero Section */
        .hero {
            height: 861px;
            background-size: cover;
            background-position: center;
            position: relative;
            padding-top: 118px;
        }
        
        /* .hero::before { */
            /* content: ''; */
            /* position: absolute; */
            /* top: 0; */
            /* left: 0; */
            /* width: 100%; */
            /* height: 100%; */
            /* background-color: rgba(74, 91, 118, 0.7); */
        /* } */
        
        .hero-content {
            position: relative;
            z-index: 1;
            color: #fff;
            padding: 120px 0;
            max-width: 730px;
        }
        
        .hero-title {
            font-size: 32px;
            font-weight: 500;
            margin-bottom: 20px;
        }
        
        .hero-text {
            font-size: 14px;
            line-height: 30px;
            margin-bottom: 20px;
        }
        
        .contact-info {
            margin-top: 30px;
            font-size: 14px;
        }
        
        .contact-info p {
            margin-bottom: 10px;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #d8d8d8;
            color: #1e2b49;
            padding: 18px 15px;
            font-size: 16px;
            margin-top: 20px;
            transition: background-color 0.3s;
            border: none;
            cursor: pointer;
			width: 240px;
			height: 50px;
        }
        
        .btn i {
            margin-right: 8px;
        }
        
        .btn:hover {
            background-color: #1e2b49;
			color: #fff;
        }
        /* Stats Section */
        .stats-section {
            padding: 40px 0 10px;
            background-color: #fff;
        }
        
        .stats-container {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }
        
        .company-intro {
            width: 100%;
        }
        
        .company-title {
            font-size: 24px;
            margin-bottom: 20px;
			font-weight: 400;
        }
        
        .company-subtitle {
            font-size: 24px;
            margin-bottom: 30px;
            font-weight: 400;
        }
        
        .yellow-line {
            width: 124px;
            height: 6px;
            background-color: #ffd700;
            margin-bottom: 30px;
        }
        
        .stats-grid {
            width: 55%;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
        
        .stat-item {
            text-align: left;
        }
        
        .stat-number {
            font-size: 40px;
            font-weight: 400;
            color: #333;
            margin-bottom: 10px;
        }
        
        .stat-text {
            font-size: 20px;
            color: #333;
			margin-top: 20px;
        }
        
        /* About Section */
        .about-section {
            padding: 50px 0;
            background-color: #fff;
        }
        
        .about-text {
            font-size: 14px;
            line-height: 1.8;
            color: #333;
            margin-bottom: 20px;
        }
        
        /* Awards Section */
        .awards-section {
            padding: 80px 0;
            background-color: #f9f9f9;
        }
        
        .section-title {
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 40px;
            color: #333;
        }
        
        .awards-container {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }
        
        .awards-intro {
            width: 100%;
        }
        
        .awards-text {
            font-size: 14px;
            line-height: 1.8;
            color: #333;
        }
        
        .awards-slider {
            width: 100%;
            position: relative;
        }
        
        .award-slide {
            display: none;
        }
        
        .award-slide.active {
            display: flex;
            justify-content: space-between;
        }
        
        .award-card {
            width: 48%;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .award-img {
            width: 100%;
            object-fit: cover;
        }
        
        .award-content {
            padding: 20px;
        }
        
        .award-date {
            font-size: 13px;
            color: #999;
            margin-bottom: 10px;
        }
        
        .award-title {
            font-size: 16px;
            line-height: 1.8;
            color: #333;
			font-weight: 400;
        }
        
        .slider-dots {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .slider-dot {
            width: 10px;
            height: 10px;
            background-color: #ddd;
            margin: 0 5px;
            cursor: pointer;
        }
        
        .slider-dot.active {
            background-color: #1a2b47;
        }		
        /* Why Choose Us Section */
        .why-section {
            padding: 80px 0;
            background-color: #fff;
        }
        
        .why-container {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }
        
        .why-title-container {
            width: 100%;
        }
        
        .why-title {
            font-size: 24px;
            font-weight: 500;
            color: #333;
            margin-bottom: 20px;
        }
        
        .accordion-container {
            width: 100%;
        }
        
        .accordion {
            width: 100%;
        }
        
        .accordion-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            cursor: pointer;
        }
        
        .accordion-title {
            font-size: 16px;
            font-weight: 500;
            color: #333;
            display: flex;
            align-items: center;
        }
        
        .accordion-number {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            margin-right: 15px;
        }
        
        .accordion-icon {
            font-size: 16px;
            transition: transform 0.3s;
        }
        
        .accordion-icon.up {
            transform: rotate(180deg);
        }
        
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding-left: 40px;
        }
        
        .accordion-content.active {
            max-height: 500px;
        }
        
        .accordion-text {
            font-size: 14px;
            line-height: 1.8;
            color: #666;
            padding-bottom: 20px;
        }
		
		
        /* Partners Section */
        .partners-section {
            padding: 80px 0;
            background-color: #1a2b47;
            color: #fff;
        }
        
        .partners-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }
        
        .partners-title {
            font-size: 24px;
            font-weight: 500;
        }
        
        .partners-btn {
            background-color: #d7d7d7;
            color: #1a2b47;
            border: 1px solid #fff;
            padding: 6px 40px;
            font-size: 14px;
            cursor: pointer;
        }
        
        .partners-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }
        
        .partner-card {
            background-color: #fff;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
        }
        
        .partner-logo {
            max-width: 100%;
            max-height: 50px;
        }
		
            .hero {
                height: auto;
                padding-bottom: 50px;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .award-slide.active {
                flex-direction: column;
            }
            
            .award-card {
                width: 100%;
                margin-bottom: 20px;
            }
            
            .footer-links {
                flex-wrap: wrap;
            }
            
            .footer-column {
                width: 50%;
                margin-bottom: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .partners-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-column {
                width: 50%;
            }
        }
