
    .page-3333win {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0; /* Light text for dark background */
        background-color: #1a1a2e; /* Dark background */
        line-height: 1.6;
        overflow-x: hidden; /* Prevent horizontal scroll */
    }

    /* Section styling */
    .page-3333win__hero-section,
    .page-3333win__about-section,
    .page-3333win__products-section,
    .page-3333win__promo-section,
    .page-3333win__providers-section,
    .page-3333win__payments-section,
    .page-3333win__why-choose-section,
    .page-3333win__faq-section,
    .page-3333win__cta-section {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    /* Specific top padding for hero section, assuming body already has offset */
    .page-3333win__hero-section {
        padding-top: 10px; /* Decorative top padding */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 60vh;
        position: relative;
        overflow: hidden;
    }

    /* Hero Content */
    .page-3333win__hero-content {
        position: relative;
        z-index: 2;
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .page-3333win__main-title {
        font-size: 2.5em;
        color: #ffcc00; /* Gold accent color */
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-3333win__hero-description {
        font-size: 1.1em;
        color: #e0e0e0;
        margin-bottom: 30px;
    }

    .page-3333win__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        max-width: 100%; /* Responsive image */
        height: auto; /* Responsive image */
    }

    /* Buttons */
    .page-3333win__button {
        display: inline-block;
        padding: 12px 25px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1em;
        transition: background-color 0.3s ease, color 0.3s ease;
        margin: 0 10px;
        cursor: pointer;
        border: none;
    }

    .page-3333win__button--primary {
        background-color: #ffcc00; /* Gold */
        color: #1a1a2e; /* Dark text */
    }

    .page-3333win__button--primary:hover {
        background-color: #e6b800;
    }

    .page-3333win__button--secondary {
        background-color: #334455; /* Darker accent */
        color: #ffcc00; /* Gold */
        border: 1px solid #ffcc00;
    }

    .page-3333win__button--secondary:hover {
        background-color: #445566;
        color: #fff;
    }

    /* Section Titles */
    .page-3333win__section-title {
        font-size: 2em;
        color: #ffcc00;
        margin-bottom: 30px;
        text-align: center;
        position: relative;
        padding-bottom: 10px;
    }

    .page-3333win__section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background-color: #ffcc00;
    }

    .page-3333win__text-content {
        font-size: 1em;
        margin-bottom: 20px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        text-align: justify;
    }

    /* Product Grid */
    .page-3333win__product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }

    .page-3333win__product-item {
        background-color: #2a2a4a;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
        transition: transform 0.3s ease;
    }

    .page-3333win__product-item:hover {
        transform: translateY(-5px);
    }

    .page-3333win__product-image {
        width: 100%;
        max-width: 300px;
        height: auto;
        border-radius: 8px;
        margin-bottom: 15px;
        object-fit: cover;
        max-height: 200px; /* Ensure images are not too large */
    }

    .page-3333win__product-title {
        font-size: 1.3em;
        color: #ffcc00;
        margin-bottom: 10px;
    }

    .page-3333win__product-description {
        font-size: 0.95em;
        color: #ccc;
    }

    /* Promotion Grid (similar to product grid) */
    .page-3333win__promo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }

    .page-3333win__promo-item {
        background-color: #2a2a4a;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
        transition: transform 0.3s ease;
    }

    .page-3333win__promo-item:hover {
        transform: translateY(-5px);
    }

    .page-3333win__promo-image {
        width: 100%;
        max-width: 300px;
        height: auto;
        border-radius: 8px;
        margin-bottom: 15px;
        object-fit: cover;
        max-height: 180px;
    }

    .page-3333win__promo-title {
        font-size: 1.2em;
        color: #ffcc00;
        margin-bottom: 10px;
    }

    .page-3333win__promo-description {
        font-size: 0.95em;
        color: #ccc;
    }

    /* Provider and Payment Grids */
    .page-3333win__provider-grid,
    .page-3333win__payment-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 30px;
        align-items: center;
        justify-content: center;
    }

    .page-3333win__provider-item,
    .page-3333win__payment-item {
        background-color: #2a2a4a;
        border-radius: 8px;
        padding: 15px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    }

    .page-3333win__provider-logo,
    .page-3333win__payment-logo {
        max-width: 100px; /* Smaller logos for providers/payments */
        height: auto;
        margin-bottom: 10px;
        object-fit: contain;
        max-height: 50px;
    }

    .page-3333win__provider-name,
    .page-3333win__payment-name {
        font-size: 0.9em;
        color: #ffcc00;
        font-weight: bold;
    }

    /* Why Choose Section (Features) */
    .page-3333win__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }

    .page-3333win__feature-item {
        background-color: #2a2a4a;
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
    }

    .page-3333win__feature-icon {
        max-width: 100px;
        height: auto;
        margin-bottom: 15px;
        object-fit: contain;
        max-height: 80px;
    }

    .page-3333win__feature-title {
        font-size: 1.25em;
        color: #ffcc00;
        margin-bottom: 10px;
    }

    .page-3333win__feature-description {
        font-size: 0.95em;
        color: #ccc;
    }

    /* FAQ Section */
    .page-3333win__faq-container {
        max-width: 800px;
        margin: 30px auto 0;
        text-align: left;
    }

    .page-3333win__faq-item {
        background-color: #2a2a4a;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    }

    .page-3333win__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: #334455;
        cursor: pointer;
        user-select: none;
        font-weight: bold;
        color: #ffcc00;
        transition: background-color 0.3s ease;
    }

    .page-3333win__faq-question:hover {
        background-color: #445566;
    }

    .page-3333win__faq-title {
        font-size: 1.1em;
        margin: 0;
        color: #ffcc00;
        pointer-events: none; /* Prevent h3 from blocking click */
        flex-grow: 1;
    }

    .page-3333win__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        margin-left: 15px;
        pointer-events: none; /* Prevent toggle from blocking click */
        transition: transform 0.3s ease;
    }

    .page-3333win__faq-item.active .page-3333win__faq-toggle {
        transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-3333win__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px; /* Initial padding */
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: #e0e0e0;
    }

    .page-3333win__faq-item.active .page-3333win__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px 20px !important; /* Expanded padding */
        opacity: 1;
    }

    .page-3333win__faq-answer p {
        margin: 0;
        padding-bottom: 10px; /* Adjust as needed for content spacing */
    }

    /* Call to Action Section */
    .page-3333win__cta-buttons {
        margin-top: 30px;
    }

    /* Floating Buttons (for mobile-first) */
    .page-3333win__floating-buttons {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
        z-index: 1000;
        width: calc(100% - 40px); /* Adjust width for padding */
        max-width: 400px; /* Limit width on larger screens */
        opacity: 1;
        visibility: visible;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .page-3333win__floating-button {
        flex: 1;
        padding: 15px 10px;
        border-radius: 8px;
        text-align: center;
        font-weight: bold;
        text-decoration: none;
        font-size: 1.1em;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
        transition: background-color 0.3s ease;
    }

    .page-3333win__floating-button--register {
        background-color: #ffcc00; /* Gold */
        color: #1a1a2e; /* Dark text */
    }

    .page-3333win__floating-button--register:hover {
        background-color: #e6b800;
    }

    .page-3333win__floating-button--login {
        background-color: #334455; /* Darker accent */
        color: #ffcc00; /* Gold */
        border: 1px solid #ffcc00;
    }

    .page-3333win__floating-button--login:hover {
        background-color: #445566;
        color: #fff;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-3333win__hero-section {
            min-height: 50vh;
            padding-left: 15px;
            padding-right: 15px;
        }

        .page-3333win__hero-content {
            padding: 15px;
        }

        .page-3333win__main-title {
            font-size: 1.8em;
        }

        .page-3333win__hero-description {
            font-size: 1em;
        }

        .page-3333win__hero-buttons {
            flex-direction: column;
            gap: 15px;
        }

        .page-3333win__button {
            width: 100%;
            margin: 0;
        }

        .page-3333win__section-title {
            font-size: 1.6em;
            margin-bottom: 20px;
        }

        .page-3333win__text-content {
            font-size: 0.95em;
            padding: 0 5px;
        }

        .page-3333win__product-grid,
        .page-3333win__promo-grid,
        .page-3333win__features-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .page-3333win__product-image,
        .page-3333win__promo-image,
        .page-3333win__feature-icon {
            max-width: 80%; /* Ensure images scale down */
            margin-left: auto;
            margin-right: auto;
        }

        .page-3333win__provider-grid,
        .page-3333win__payment-grid {
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
        }
        
        .page-3333win__faq-question {
            padding: 12px 15px;
        }

        .page-3333win__faq-title {
            font-size: 1em;
        }

        .page-3333win__faq-answer {
            padding: 0 15px;
        }

        .page-3333win__faq-item.active .page-3333win__faq-answer {
            padding: 15px 15px !important;
        }

        /* List item specific mobile styles */
        .page-3333win__product-item,
        .page-3333win__promo-item,
        .page-3333win__provider-item,
        .page-3333win__payment-item,
        .page-3333win__feature-item,
        .page-3333win__faq-item {
            box-sizing: border-box !important;
            width: 100% !important;
            max-width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        /* Image responsive for mobile */
        .page-3333win__hero-image,
        .page-3333win__product-image,
        .page-3333win__promo-image,
        .page-3333win__provider-logo,
        .page-3333win__payment-logo,
        .page-3333win__feature-icon {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        
        .page-3333win__hero-section,
        .page-3333win__about-section,
        .page-3333win__products-section,
        .page-3333win__promo-section,
        .page-3333win__providers-section,
        .page-3333win__payments-section,
        .page-3333win__why-choose-section,
        .page-3333win__faq-section,
        .page-3333win__cta-section {
            padding: 30px 15px; /* Adjust section padding */
        }

        .page-3333win__faq-container {
            margin-left: 0;
            margin-right: 0;
        }
    }

    @media (min-width: 769px) {
        /* Hide floating buttons on desktop */
        .page-3333win__floating-buttons {
            opacity: 0;
            visibility: hidden;
        }
    }
  