
    /* Reset and Base Styles for UEEshop Content Area */
    .ueeshop-content * {
        box-sizing: border-box;
    }

    .ueeshop-content {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.8;
        color: #333;
        font-size: 16px;
        max-width: 100%;
        margin: 0 auto;
        padding: 20px 0;
    }

    /* Banner Image Section - Easy to Replace */
    .event-banner {
        width: 100%;
        margin: 0 auto 40px;
        text-align: center;
    }

    .event-banner img {
        width: 100%;
        max-width: 1920px;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    /* Placeholder styling if no image yet */
    .banner-placeholder {
        width: 100%;
        max-width: 1920px;
        height: auto;
        aspect-ratio: 1920/650;
        background: linear-gradient(135deg, #30A0FF 0%, #1a7acc 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 20px;
        font-weight: 600;
        text-align: center;
        padding: 40px 20px;
        margin: 0 auto 40px;
        border-radius: 8px;
    }

    /* Typography */
    .ueeshop-content h1 {
        color: #000;
        font-size: 32px;
        margin: 30px 0 20px;
        font-weight: 700;
        line-height: 1.3;
    }

    .ueeshop-content h2 {
        color: #30A0FF;
        font-size: 28px;
        margin: 40px 0 20px;
        font-weight: 700;
        line-height: 1.4;
    }

    .ueeshop-content h3 {
        color: #000;
        font-size: 22px;
        margin: 30px 0 15px;
        font-weight: 600;
        line-height: 1.4;
    }

    .ueeshop-content p {
        margin-bottom: 18px;
        font-size: 16px;
        color: #444;
        line-height: 1.8;
    }

    .ueeshop-content strong {
        color: #000;
        font-weight: 600;
    }

    .ueeshop-content em {
        font-style: italic;
        color: #30A0FF;
    }

    /* Lists */
    .ueeshop-content ul,
    .ueeshop-content ol {
        margin: 20px 0;
        padding-left: 30px;
    }

    .ueeshop-content li {
        margin-bottom: 12px;
        font-size: 16px;
        color: #444;
        line-height: 1.7;
    }

    /* Highlight Box - Blue Background */
    .info-box {
        background-color: #E8F4FD;
        border-left: 4px solid #30A0FF;
        padding: 25px;
        margin: 30px 0;
        border-radius: 6px;
    }

    .info-box p {
        margin-bottom: 12px;
    }

    .info-box ul {
        margin-top: 15px;
        margin-bottom: 5px;
    }

    .info-box strong {
        color: #30A0FF;
    }

    /* Reference Box - Gray Background */
    .reference-box {
        background-color: #F5F5F5;
        border: 1px solid #E0E0E0;
        padding: 25px;
        margin: 30px 0;
        border-radius: 6px;
    }

    .reference-box h3 {
        margin-top: 0;
        color: #30A0FF;
    }

    /* Comparison Table */
    .content-table {
        width: 100%;
        border-collapse: collapse;
        margin: 30px 0;
        font-size: 15px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        overflow-x: auto;
        display: block;
    }

    .content-table table {
        width: 100%;
        border-collapse: collapse;
    }

    .content-table thead {
        background-color: #30A0FF;
        color: white;
    }

    .content-table th,
    .content-table td {
        padding: 14px;
        text-align: left;
        border: 1px solid #ddd;
    }

    .content-table tbody tr:nth-child(even) {
        background-color: #F9F9F9;
    }

    .content-table tbody tr:hover {
        background-color: #E8F4FD;
    }

    /* CTA Section */
    .cta-box {
        background: linear-gradient(135deg, #30A0FF 0%, #1a7acc 100%);
        color: white;
        padding: 35px 30px;
        margin: 40px 0;
        border-radius: 8px;
        text-align: center;
    }

    .cta-box h3 {
        color: white;
        font-size: 26px;
        margin: 0 0 15px 0;
    }

    .cta-box p {
        color: white;
        margin-bottom: 25px;
        font-size: 16px;
    }

    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .cta-btn {
        display: inline-block;
        padding: 14px 32px;
        background-color: white;
        color: #30A0FF;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 16px;
        transition: all 0.3s ease;
        box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    }

    .cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 18px rgba(0,0,0,0.25);
        background-color: #000;
        color: white;
        text-decoration: none;
    }

    .cta-btn-dark {
        background-color: #000;
        color: white;
    }

    .cta-btn-dark:hover {
        background-color: white;
        color: #30A0FF;
    }

    /* FAQ Section */
    .faq-item {
        background-color: #FAFAFA;
        border: 1px solid #E5E5E5;
        border-radius: 6px;
        padding: 25px;
        margin-bottom: 20px;
    }

    .faq-item h3 {
        color: #30A0FF;
        margin-top: 0;
        margin-bottom: 12px;
        font-size: 20px;
    }

    .faq-item p {
        margin-bottom: 0;
        color: #555;
    }

    /* Ordered List Styling */
    .ueeshop-content ol li {
        font-weight: 500;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .ueeshop-content h1 {
            font-size: 26px;
        }

        .ueeshop-content h2 {
            font-size: 23px;
        }

        .ueeshop-content h3 {
            font-size: 19px;
        }

        .ueeshop-content p,
        .ueeshop-content li {
            font-size: 15px;
        }

        .info-box,
        .reference-box,
        .faq-item {
            padding: 20px;
        }

        .cta-box {
            padding: 25px 20px;
        }

        .cta-buttons {
            flex-direction: column;
            align-items: stretch;
        }

        .cta-btn {
            width: 100%;
        }

        .content-table {
            font-size: 13px;
        }

        .content-table th,
        .content-table td {
            padding: 10px;
        }

        .banner-placeholder {
            font-size: 16px;
            padding: 30px 15px;
        }
    }

    @media (max-width: 480px) {
        .ueeshop-content {
            padding: 15px 0;
        }

        .ueeshop-content h1 {
            font-size: 22px;
        }

        .ueeshop-content h2 {
            font-size: 20px;
        }

        .ueeshop-content h3 {
            font-size: 17px;
        }

        .info-box,
        .reference-box,
        .faq-item {
            padding: 15px;
        }

        .cta-box h3 {
            font-size: 22px;
        }
    }
