
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #000000;
            background-color: #ffffff;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Section */
        header {
            background: linear-gradient(135deg, #30A0FF 0%, #1a7fd4 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0 Q300,60 600,30 T1200,40 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.1)"/></svg>') bottom center no-repeat;
            background-size: cover;
        }
        
        header h1 {
            font-size: 3em;
            margin-bottom: 20px;
            font-weight: 700;
            position: relative;
            z-index: 1;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        
        header p {
            font-size: 1.3em;
            position: relative;
            z-index: 1;
            opacity: 0.95;
        }
        
        /* Main Content */
        main {
            padding: 60px 0;
        }
        
        .section {
            margin-bottom: 80px;
        }
        
        .section-title {
            font-size: 2.5em;
            color: #30A0FF;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 700;
            position: relative;
            padding-bottom: 20px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #30A0FF, #1a7fd4);
            border-radius: 2px;
        }
        
        .intro-text {
            font-size: 1.2em;
            text-align: center;
            max-width: 900px;
            margin: 0 auto 50px;
            color: #333;
            line-height: 2;
        }
        
        /* Two Column Layout */
        .two-column-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .column {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 12px;
            border-left: 5px solid #30A0FF;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .column:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(48,160,255,0.2);
        }
        
        .column h3 {
            color: #000000;
            font-size: 1.8em;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .column p {
            color: #333;
            font-size: 1.05em;
            margin-bottom: 15px;
        }
        
        .column ul {
            list-style: none;
            padding-left: 0;
        }
        
        .column ul li {
            padding-left: 30px;
            position: relative;
            margin-bottom: 12px;
            color: #333;
            font-size: 1.05em;
        }
        
        .column ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #30A0FF;
            font-weight: bold;
            font-size: 1.3em;
        }
        
        /* Image Gallery */
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin: 40px 0;
        }
        
        .image-gallery img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .image-gallery img:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(48,160,255,0.3);
        }
        
        /* Highlight Box */
        .highlight-box {
            background: linear-gradient(135deg, #30A0FF 0%, #1a7fd4 100%);
            color: white;
            padding: 50px;
            border-radius: 12px;
            text-align: center;
            margin: 60px 0;
            box-shadow: 0 10px 30px rgba(48,160,255,0.3);
        }
        
        .highlight-box h3 {
            font-size: 2.2em;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .highlight-box p {
            font-size: 1.2em;
            line-height: 1.8;
            opacity: 0.95;
        }
        
        /* Stats Section */
        .stats-section {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin: 50px 0;
        }
        
        .stat-card {
            background: white;
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            border-top: 4px solid #30A0FF;
            transition: transform 0.3s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-8px);
        }
        
        .stat-number {
            font-size: 3.5em;
            color: #30A0FF;
            font-weight: 700;
            display: block;
            margin-bottom: 15px;
        }
        
        .stat-label {
            font-size: 1.2em;
            color: #000000;
            font-weight: 600;
        }
        
        /* Solution Section */
        .solution-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin: 40px 0;
        }
        
        .solution-card {
            background: white;
            padding: 35px;
            border-radius: 12px;
            border: 2px solid #e0e0e0;
            transition: all 0.3s ease;
        }
        
        .solution-card:hover {
            border-color: #30A0FF;
            box-shadow: 0 8px 20px rgba(48,160,255,0.15);
        }
        
        .solution-card h4 {
            color: #30A0FF;
            font-size: 1.6em;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .solution-card p {
            color: #333;
            font-size: 1.05em;
            line-height: 1.8;
        }
        
        /* Future Schedule Section */
        .schedule-section {
            background: #f8f9fa;
            padding: 60px 0;
            margin: 80px 0;
        }
        
        .schedule-content {
            text-align: center;
        }
        
        .schedule-image {
            max-width: 900px;
            width: 100%;
            margin: 40px auto;
            display: block;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        
        .schedule-text {
            max-width: 800px;
            margin: 30px auto;
            font-size: 1.15em;
            color: #333;
            line-height: 2;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
            color: white;
            padding: 80px 50px;
            border-radius: 12px;
            text-align: center;
            margin: 60px 0;
        }
        
        .cta-section h3 {
            font-size: 2.5em;
            margin-bottom: 25px;
            font-weight: 700;
        }
        
        .cta-section p {
            font-size: 1.3em;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        
        .cta-buttons {
            display: flex;
            gap: 25px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .cta-button {
            display: inline-block;
            padding: 18px 45px;
            background-color: #30A0FF;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.15em;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(48,160,255,0.3);
        }
        
        .cta-button:hover {
            background-color: #1a7fd4;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(48,160,255,0.4);
        }
        
        .cta-button.secondary {
            background-color: transparent;
            border: 2px solid #30A0FF;
        }
        
        .cta-button.secondary:hover {
            background-color: #30A0FF;
        }
        
        /* Footer */
        footer {
            background: #000000;
            color: white;
            padding: 40px 0;
            text-align: center;
        }
        
        footer p {
            font-size: 1em;
            opacity: 0.8;
        }
        
        /* Responsive Design */
        @media (max-width: 968px) {
            .two-column-section,
            .solution-grid,
            .stats-section {
                grid-template-columns: 1fr;
            }
            
            .image-gallery {
                grid-template-columns: repeat(2, 1fr);
            }
            
            header h1 {
                font-size: 2.2em;
            }
            
            .section-title {
                font-size: 2em;
            }
        }
        
        @media (max-width: 576px) {
            .image-gallery {
                grid-template-columns: 1fr;
            }
            
            header h1 {
                font-size: 1.8em;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-button {
                width: 100%;
                max-width: 300px;
            }
        }
    