
        /* Prevent horizontal scrollbars on mobile */
        @media (max-width: 768px) {
            html, body {
              overflow-x: hidden;
              max-width: 100%;
            }
            
            /* Reset AOS horizontal animations on mobile */
            [data-aos="fade-left"],
            [data-aos="fade-right"] {
              transform: none !important;
              opacity: 1 !important;
            }
            
            /* Before animation state */
            [data-aos="fade-left"]:not(.aos-animate),
            [data-aos="fade-right"]:not(.aos-animate) {
              transform: translateY(20px) !important;
              opacity: 0 !important;
            }
        }
        
        /* Additional safety for AOS animations */
        .aos-animate {
            overflow: hidden;
        }

        /* Our Business Section Styles */
        .ourbusiness {
            background-color: #fff;
            padding: 80px 0;
            text-align: center;
        }

        .business-container {
            max-width: 1200px;
            margin: 40px auto 0;
            padding: 0 20px;
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 40px;
        }

        .business-image {
            flex: 1;
        }

        .business-img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

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

        .business-content p {
            font-size: 16px;
            line-height: 1.6;
            color: #666;
            margin-bottom: 20px;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .ourbusiness {
                padding: 60px 0;
            }
            
            .business-container {
                flex-direction: column;
                text-align: center;
            }
            
            .business-content {
                text-align: center;
            }
        }

        /* Our Partners Section Styles */
        .ourpartners {
            background-color: #fff;
            padding: 80px 0;
            text-align: center;
        }

        /* 左右结构样式 */
        .partner-flex {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .partner-image {
            flex-shrink: 0;
            width: 120px;
            height: 120px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .partner-image .partner-logo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }

        .partner-text {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .partners-container {
            max-width: 1200px;
            margin: 40px auto 0;
            padding: 0 20px;
        }

        .partner-card {
            display: flex;
            margin-bottom: 40px;
            padding: 30px;
            background-color: #f9f9f9;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-left: 4px solid #2E7D32;
        }

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

        .partner-number {
            flex: 0 0 60px;
            height: 60px;
            background-color: #2E7D32;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            margin-right: 30px;
        }

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

        .partner-name {
            font-size: 24px;
            color: #333;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .partner-desc {
            font-size: 16px;
            line-height: 1.6;
            color: #666;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .ourpartners {
                padding: 60px 0;
            }
            
            .partner-card {
                flex-direction: column;
                text-align: center;
                padding: 25px;
            }
            
            .partner-number {
                margin-right: 0;
                margin-bottom: 20px;
                align-self: center;
            }
            
            .partner-content {
                text-align: center;
            }
            
            .partner-name {
                font-size: 20px;
            }
        }
        
        /* 评价卡片响应式调整 */
        @media (max-width: 992px) {
            .partner-flex {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .partner-image {
                width: 100px;
                height: 100px;
            }
        }
        
        @media (max-width: 768px) {
            .partner-image {
                width: 80px;
                height: 80px;
            }
            
            .partner-flex {
                gap: 15px;
            }
            
            .partner-desc {
                font-size: 14px;
            }
                font-size: 14px;
            }
        }
        
