        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Noto Sans SC', sans-serif;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
     

        
        .logo {
            font-size: 2.5rem;
            margin-bottom: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .logo i {
            margin-right: 15px;
            color: #4ade80;
        }
        
        h1 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 10px;
            animation: fadeInDown 1s ease;
        }
        
        .subtitle {
            font-size: 1.4rem;
            font-weight: 300;
            max-width: 800px;
            margin: 0 auto 20px;
            color: #e2e8f0;
            animation: fadeInDown 1.2s ease;
        }
        
        .mission-section {
            background: white;
            border-radius: 15px;
            padding: 40px;
            margin: 50px 0;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }
        
        .mission-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, #3b82f6, #10b981);
        }
        
        .section-title {
            text-align: center;
            font-size: 2.2rem;
            color: #1e3a8a;
            margin-bottom: 40px;
            position: relative;
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #3b82f6, #10b981);
            border-radius: 2px;
        }
        
        .mission-content {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .mission-card {
            flex: 1;
            min-width: 300px;
            background: #f8fafc;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 3px solid #3b82f6;
        }
        
        .mission-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
        }
        
        .mission-card h3 {
            font-size: 1.5rem;
            color: #1e40af;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .mission-card h3 i {
            margin-right: 10px;
            color: #3b82f6;
        }
        
        .mission-card p {
            color: #4b5563;
            font-size: 1.1rem;
        }
        
        .benefits-section {
            margin: 60px 0;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .benefit-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
            position: relative;
            overflow: hidden;
        }
        
        .benefit-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
            border-color: #c7d2fe;
        }
        
        .benefit-icon {
            font-size: 3rem;
            color: #3b82f6;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .benefit-card h3 {
            font-size: 1.6rem;
            color: #1e3a8a;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .benefit-card ul {
            padding-left: 20px;
            margin: 20px 0;
        }
        
        .benefit-card li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        
        .benefit-card li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #10b981;
            font-weight: bold;
        }
        
        .price-section {
            background: #f0f9ff;
            padding: 30px;
            border-radius: 15px;
            margin: 20px 0;
            border-left: 4px solid #3b82f6;
        }
        
        .price-section h4 {
            font-size: 1.3rem;
            color: #1e40af;
            margin-bottom: 15px;
        }
        
        .prices {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
            margin: 20px 0;
        }
        
        .price-item {
            background: white;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            min-width: 150px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            border: 2px solid #dbeafe;
        }
        
        .price-value {
            font-size: 1.8rem;
            font-weight: bold;
            color: #3b82f6;
            margin: 10px 0;
        }
        
        .price-label {
            color: #4b5563;
            font-size: 1.1rem;
        }
        
        .table-section {
            margin: 60px 0;
        }
        
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .comparison-table th {
            background: linear-gradient(to right, #1d4ed8, #3b82f6);
            color: white;
            padding: 18px;
width:33.33%;
            text-align: left;
            font-size: 1.2rem;
        }
        
        .comparison-table td {
            padding: 15px;
width:33.33%;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .comparison-table tr:last-child td {
            border-bottom: none;
        }
        
        .comparison-table tr:nth-child(even) {
            background-color: #f8fafc;
        }
        
        .comparison-table tr:hover {
            background-color: #f0f9ff;
        }
        
        .cta-section {
            background: linear-gradient(to right, #1e3a8a, #1d4ed8);
            color: white;
            padding: 60px 20px;
            text-align: center;
            border-radius: 20px;
            margin: 60px 0;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)" /></svg>');
            background-size: cover;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            position: relative;
        }
        
        .cta-section p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 30px;
            position: relative;
        }
        
        .cta-button {
            display: inline-block;
            background: #10b981;
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            padding: 16px 45px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
            position: relative;
            border: none;
            cursor: pointer;
        }
        
        .cta-button:hover {
            background: #059669;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(16, 185, 129, 0.6);
        }
        
     
        .contact-info {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin: 30px 0;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .contact-item i {
            color: #60a5fa;
            font-size: 1.2rem;
        }
        
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #334155;
            color: #94a3b8;
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @media (max-width: 768px) {
            .mission-content {
                flex-direction: column;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            .subtitle {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }
