
        * {
            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%, #1e7fd4 100%);
            color: #ffffff;
            padding: 80px 0 60px;
            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,50 600,30 T1200,40 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.05)"/></svg>') no-repeat bottom;
            background-size: cover;
        }
        
        header h1 {
            font-size: 3em;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        
        .subtitle {
            font-size: 1.3em;
            font-weight: 300;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }
        
        .event-details {
            font-size: 1.1em;
            opacity: 0.95;
            position: relative;
            z-index: 1;
            margin-top: 10px;
        }
        
        /* Main Content */
        main {
            background-color: #ffffff;
            padding: 60px 0;
        }
        
        .content-section {
            margin-bottom: 60px;
            padding: 40px;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(48, 160, 255, 0.08);
            border-left: 5px solid #30A0FF;
        }
        
        .content-section h2 {
            color: #30A0FF;
            font-size: 2.2em;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #30A0FF;
            font-weight: 700;
        }
        
        .content-section h3 {
            color: #000000;
            font-size: 1.6em;
            margin: 30px 0 20px;
            font-weight: 600;
        }
        
        .content-section p {
            font-size: 1.1em;
            margin-bottom: 20px;
            color: #333333;
            text-align: justify;
        }
        
        .content-section ul, .content-section ol {
            margin: 20px 0 20px 30px;
            font-size: 1.1em;
            color: #333333;
        }
        
        .content-section li {
            margin-bottom: 12px;
            line-height: 1.8;
        }
        
        /* Highlight Box */
        .highlight-box {
            background: linear-gradient(135deg, #30A0FF 0%, #1e7fd4 100%);
            color: #ffffff;
            padding: 35px;
            border-radius: 12px;
            margin: 30px 0;
            box-shadow: 0 6px 25px rgba(48, 160, 255, 0.25);
        }
        
        .highlight-box h3 {
            color: #ffffff;
            font-size: 1.8em;
            margin-bottom: 20px;
        }
        
        .highlight-box p, .highlight-box ul, .highlight-box li {
            color: #ffffff;
        }
        
        /* Image Gallery */
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        
        .gallery-item {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(48, 160, 255, 0.3);
        }
        
        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }
        
        .gallery-caption {
            padding: 15px;
            background: #f8f9fa;
            font-size: 0.95em;
            color: #666;
            text-align: center;
        }
        
        /* Stats Section */
        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .stat-card {
            background: linear-gradient(135deg, #30A0FF 0%, #1e7fd4 100%);
            color: #ffffff;
            padding: 35px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 6px 25px rgba(48, 160, 255, 0.25);
            transition: transform 0.3s ease;
        }
        
        .stat-card:hover {
            transform: scale(1.05);
        }
        
        .stat-number {
            font-size: 3.5em;
            font-weight: 700;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        
        .stat-label {
            font-size: 1.2em;
            font-weight: 300;
            opacity: 0.95;
        }
        
        /* Solution Features */
        .solution-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 35px 0;
        }
        
        .solution-card {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 12px;
            border-top: 4px solid #30A0FF;
            transition: all 0.3s ease;
        }
        
        .solution-card:hover {
            background: #30A0FF;
            color: #ffffff;
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(48, 160, 255, 0.3);
        }
        
        .solution-card h4 {
            color: #000000;
            font-size: 1.3em;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .solution-card:hover h4,
        .solution-card:hover p {
            color: #ffffff;
        }
        
        .solution-card p {
            color: #666;
            font-size: 1em;
            line-height: 1.7;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #000000 0%, #333333 100%);
            color: #ffffff;
            padding: 60px 40px;
            border-radius: 12px;
            text-align: center;
            margin: 60px 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }
        
        .cta-section h2 {
            color: #ffffff;
            border: none;
            font-size: 2.5em;
            margin-bottom: 25px;
        }
        
        .cta-section p {
            font-size: 1.3em;
            margin-bottom: 35px;
            color: #ffffff;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
            margin-top: 30px;
        }
        
        .cta-button {
            display: inline-block;
            padding: 18px 45px;
            font-size: 1.1em;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .cta-button.primary {
            background: #30A0FF;
            color: #ffffff;
        }
        
        .cta-button.primary:hover {
            background: #1e7fd4;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(48, 160, 255, 0.4);
        }
        
        .cta-button.secondary {
            background: #ffffff;
            color: #30A0FF;
        }
        
        .cta-button.secondary:hover {
            background: #f0f0f0;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
        }
        
        /* Future Exhibition Section */
        .exhibition-schedule {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 12px;
            margin: 40px 0;
            border: 2px solid #30A0FF;
        }
        
        .exhibition-schedule h3 {
            color: #30A0FF;
            text-align: center;
            font-size: 2em;
            margin-bottom: 30px;
        }
        
        .exhibition-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .exhibition-item {
            background: #ffffff;
            padding: 25px;
            border-radius: 8px;
            border-left: 5px solid #30A0FF;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .exhibition-item:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 20px rgba(48, 160, 255, 0.2);
        }
        
        .exhibition-name {
            font-weight: 700;
            font-size: 1.2em;
            color: #000000;
            margin-bottom: 8px;
        }
        
        .exhibition-location {
            color: #666;
            font-size: 1em;
            display: block;
        }
        
        /* Footer */
        footer {
            background: #000000;
            color: #ffffff;
            padding: 40px 0;
            text-align: center;
        }
        
        footer p {
            font-size: 1em;
            opacity: 0.9;
        }
        
        /* Link Styling */
        a {
            color: #30A0FF;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        
        a:hover {
            color: #1e7fd4;
            text-decoration: underline;
        }
        
        .content-section a {
            border-bottom: 2px solid transparent;
            transition: border-color 0.3s ease;
        }
        
        .content-section a:hover {
            border-bottom-color: #30A0FF;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            header h1 {
                font-size: 2em;
            }
            
            .subtitle {
                font-size: 1.1em;
            }
            
            .content-section {
                padding: 25px;
            }
            
            .content-section h2 {
                font-size: 1.8em;
            }
            
            .stat-number {
                font-size: 2.5em;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-button {
                width: 100%;
                max-width: 300px;
            }
        }
    