
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            background-color: #f8f9fa;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .hero-section {
            background: linear-gradient(135deg, #30A0FF 0%, #1a7acc 100%);
            color: white;
            padding: 60px 20px;
            text-align: center;
            border-radius: 15px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(48, 160, 255, 0.3);
        }

        .hero-section h1 {
            font-size: 2.5em;
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .hero-section p {
            font-size: 1.2em;
            margin-bottom: 15px;
            opacity: 0.95;
        }

        .content-section {
            background: white;
            padding: 40px;
            margin-bottom: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .content-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }

        h2 {
            color: #30A0FF;
            font-size: 2em;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #30A0FF;
            position: relative;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: #000000;
        }

        h3 {
            color: #000000;
            font-size: 1.5em;
            margin-top: 30px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        p {
            margin-bottom: 20px;
            font-size: 1.05em;
            text-align: justify;
        }

        .expo-card {
            background: linear-gradient(to right, #f8f9fa 0%, #ffffff 100%);
            border-left: 5px solid #30A0FF;
            padding: 25px;
            margin-bottom: 25px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .expo-card:hover {
            border-left-width: 8px;
            padding-left: 28px;
            box-shadow: 0 5px 20px rgba(48, 160, 255, 0.15);
        }

        .expo-card h3 {
            color: #30A0FF;
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .expo-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }

        .detail-item {
            background: white;
            padding: 15px;
            border-radius: 6px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .detail-item strong {
            color: #000000;
            display: block;
            margin-bottom: 5px;
        }

        .cta-section {
            background: linear-gradient(135deg, #000000 0%, #333333 100%);
            color: white;
            padding: 50px 40px;
            border-radius: 12px;
            text-align: center;
            margin: 40px 0;
        }

        .cta-section h2 {
            color: white;
            border-bottom-color: #30A0FF;
        }

        .cta-section h2::after {
            background-color: #30A0FF;
        }

        .cta-button {
            display: inline-block;
            background-color: #30A0FF;
            color: white;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1em;
            font-weight: 600;
            margin: 15px 10px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(48, 160, 255, 0.3);
        }

        .cta-button:hover {
            background-color: #1a7acc;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(48, 160, 255, 0.4);
        }

        .contact-info {
            background: white;
            padding: 30px;
            border-radius: 10px;
            margin-top: 25px;
            text-align: left;
        }

        .contact-info p {
            margin: 15px 0;
            font-size: 1.1em;
        }

        .contact-info a {
            color: #30A0FF;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .contact-info a:hover {
            color: #1a7acc;
            text-decoration: underline;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .service-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-top: 4px solid #30A0FF;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 30px rgba(48, 160, 255, 0.2);
            border-top-width: 6px;
        }

        .service-icon {
            font-size: 3em;
            margin-bottom: 15px;
        }

        .faq-section {
            background: white;
            padding: 40px;
            border-radius: 12px;
            margin-top: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .faq-item {
            margin-bottom: 30px;
            padding-bottom: 25px;
            border-bottom: 1px solid #e9ecef;
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        .faq-question {
            color: #000000;
            font-size: 1.2em;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .faq-answer {
            color: #555;
            line-height: 1.8;
        }

        .highlight-box {
            background: linear-gradient(to right, rgba(48, 160, 255, 0.1) 0%, rgba(48, 160, 255, 0.05) 100%);
            border-left: 4px solid #30A0FF;
            padding: 25px;
            margin: 30px 0;
            border-radius: 8px;
        }

        ul {
            margin: 20px 0 20px 30px;
        }

        li {
            margin-bottom: 12px;
            line-height: 1.8;
        }

        strong {
            color: #000000;
        }

        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 1.8em;
            }

            .hero-section p {
                font-size: 1em;
            }

            .content-section {
                padding: 25px 20px;
            }

            h2 {
                font-size: 1.6em;
            }

            .expo-details {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .cta-button {
                display: block;
                margin: 10px 0;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 15px;
            }

            .hero-section {
                padding: 40px 15px;
            }

            .hero-section h1 {
                font-size: 1.5em;
            }

            h2 {
                font-size: 1.4em;
            }

            h3 {
                font-size: 1.2em;
            }
        }
    