﻿        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
      
        }
        
        
        /* Section Common Styles */
        section {
            padding: 60px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            color: #005a9c;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: #007ac6;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Company Intro Section */
        .company-intro {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 40px;
            margin-bottom: 40px;
        }
        
        .intro-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }
        
        .intro-text {
            flex: 1;
            min-width: 300px;
            font-size:16px;
        }
        
        .intro-text h2 {
            color: #005a9c;
            margin-bottom: 20px;
            font-size: 3rem;
        }
        
        .intro-image {
            flex: 1;
            min-width: 300px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .intro-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        
        .intro-image:hover img {
            transform: scale(1.03);
        }
        
        /* Application Scene Section */
        .application-scene {
            background-color: #f0f7ff;
        }
        
        .scene-container {
            max-width: 800px;
            margin: 0 auto;
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            font-size:16px;
        }
        
        .scene-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        
        .scene-item {
            background-color: #e9f2ff;
            padding: 12px 15px;
            border-radius: 6px;
            text-align: center;
            font-weight: 500;
            color: #005a9c;
            transition: all 0.3s;
            border-left: 4px solid #007ac6;
        }
        
        .scene-item:hover {
            background-color: #007ac6;
            color: white;
            transform: translateY(-3px);
        }
        
        /* Business Scope Section */
        .business-scope {
            background-color: white;
        }
        
        .scope-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .scope-category {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            border-top: 4px solid #007ac6;
        }
        
        .scope-category:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        }
        
        .scope-category h3 {
            color: #005a9c;
            margin-bottom: 15px;
            font-size: 22px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .scope-category ul {
            margin: 0;
            padding: 0;
        }
        

        .scope-category h3 i {
            color: #ffcc00;
        }
        
        .scope-category ul {
            list-style-type: none;
        }
        
        .scope-category li {
            padding: 8px 0;
            border-bottom: 1px dashed #e0e0e0;
            color: #555;
        }
        
        .scope-category li:last-child {
            border-bottom: none;
        }
        
        /* Slogan Section */
        .slogan-section {
            background-size: cover !important;
            background-position: center !important;
            color: white;
            text-align: center;
            padding: 80px 0;
        }
        
        .slogan-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .slogan-container h2 {
            font-size: 4rem;
            margin-bottom: 20px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }
        
        .slogan-container p {
            font-size: 2rem;
            margin-bottom: 15px;
            opacity: 0.95;
        }
        
        .highlight {
            color: #ffcc00;
            font-weight: bold;
        }
        
        /* Trust Section */
        .trust-section {
            background-color: white;
        }
        
        .trust-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 50px;
        }
        
        .trust-image {
            flex: 1;
            min-width: 300px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .trust-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .trust-text {
            flex: 1;
            min-width: 300px;
            font-size:16px;
        }
        
        .trust-text h3 {
            font-size: 3rem;
            color: #005a9c;
            margin-bottom: 20px;
        }
        
        .trust-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 3.2rem;
            font-weight: bold;
            color: #007ac6;
            display: block;
        }
        
        .stat-label {
            font-size: 1.2rem;
            color: #666;
        }
        
        /* Why Choose Us Section */
        .why-choose-us {
            background-color: #f0f7ff;
        }
        
        .advantages {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
        }
        
        .advantage-card {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }
        
        .advantage-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .advantage-card h3 {
            color: #005a9c;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .advantage-card h3 i {
            color: #ffcc00;
        }
              
        /* Responsive Design */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
          
            .section-title {
                font-size: 1.6rem;
            }
            
            .company-intro, .scene-container, .scope-category, .advantage-card {
                padding: 25px;
            }
            
            .slogan-container h2 {
                font-size: 2rem;
            }
            
            .trust-content, .intro-content {
                flex-direction: column;
            }
        }
