
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', 'Helvetica', sans-serif;
            line-height: 1.8;
            color: #000000;
            background-color: #ffffff;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Section */
        .hero-section {
            background: linear-gradient(135deg, #30A0FF 0%, #1a7dc4 100%);
            color: #ffffff;
            padding: 80px 20px;
            text-align: center;
            margin-bottom: 60px;
        }
        
        .hero-section h1 {
            font-size: 42px;
            font-weight: bold;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .hero-section .subtitle {
            font-size: 20px;
            margin-bottom: 15px;
            opacity: 0.95;
        }
        
        .hero-section .date {
            font-size: 16px;
            opacity: 0.85;
            font-weight: 300;
        }
        
        /* Content Sections */
        .content-section {
            margin-bottom: 70px;
            padding: 0 20px;
        }
        
        .section-title {
            font-size: 32px;
            color: #30A0FF;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #30A0FF;
            font-weight: bold;
        }
        
        .section-content {
            font-size: 17px;
            line-height: 1.9;
            color: #000000;
            margin-bottom: 25px;
        }
        
        .section-content p {
            margin-bottom: 20px;
        }
        
        .section-content strong {
            color: #30A0FF;
            font-weight: bold;
        }
        
        /* Image Grid */
        .image-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        
        .image-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(48, 160, 255, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .image-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(48, 160, 255, 0.25);
        }
        
        .image-item img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .image-caption {
            padding: 15px;
            background-color: #f8f9fa;
            font-size: 14px;
            color: #000000;
            text-align: center;
            font-style: italic;
        }
        
        /* Highlight Box */
        .highlight-box {
            background: linear-gradient(135deg, #e8f5ff 0%, #d0e9ff 100%);
            border-left: 5px solid #30A0FF;
            padding: 30px;
            margin: 35px 0;
            border-radius: 8px;
        }
        
        .highlight-box h3 {
            color: #30A0FF;
            font-size: 24px;
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        .highlight-box ul {
            list-style: none;
            padding-left: 0;
        }
        
        .highlight-box li {
            padding: 12px 0 12px 35px;
            position: relative;
            font-size: 16px;
            color: #000000;
        }
        
        .highlight-box li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #30A0FF;
            font-size: 24px;
            font-weight: bold;
        }
        
        /* Stats Section */
        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .stat-box {
            background-color: #30A0FF;
            color: #ffffff;
            padding: 40px 25px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 8px 20px rgba(48, 160, 255, 0.2);
            transition: transform 0.3s ease;
        }
        
        .stat-box:hover {
            transform: scale(1.05);
        }
        
        .stat-number {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 16px;
            opacity: 0.95;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #000000 0%, #2d2d2d 100%);
            color: #ffffff;
            padding: 60px 40px;
            border-radius: 12px;
            text-align: center;
            margin: 60px 0;
        }
        
        .cta-section h2 {
            font-size: 36px;
            margin-bottom: 25px;
            color: #ffffff;
        }
        
        .cta-section p {
            font-size: 18px;
            margin-bottom: 35px;
            opacity: 0.9;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .cta-button {
            display: inline-block;
            padding: 18px 40px;
            background-color: #30A0FF;
            color: #ffffff;
            text-decoration: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(48, 160, 255, 0.3);
        }
        
        .cta-button:hover {
            background-color: #1a7dc4;
            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;
        }
        
        /* Link Styles */
        .inline-link {
            color: #30A0FF;
            text-decoration: none;
            font-weight: bold;
            border-bottom: 2px solid transparent;
            transition: border-bottom 0.3s ease;
        }
        
        .inline-link:hover {
            border-bottom: 2px solid #30A0FF;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 32px;
            }
            
            .hero-section .subtitle {
                font-size: 18px;
            }
            
            .section-title {
                font-size: 26px;
            }
            
            .image-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-container {
                grid-template-columns: 1fr;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-button {
                width: 100%;
                max-width: 300px;
            }
        }
    