
    .page-ae-88 {
        font-family: 'Arial', sans-serif;
        color: #e0e0e0;
        background-color: #1a1a1a;
        line-height: 1.6;
    }

    .page-ae-88__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
    }

    .page-ae-88__section-title {
        font-size: 2.5em;
        color: #ffd700; /* Gold color */
        text-align: center;
        margin-bottom: 20px;
        font-weight: bold;
        text-transform: uppercase;
    }

    .page-ae-88__section-description {
        font-size: 1.1em;
        color: #ccc;
        text-align: center;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-ae-88__highlight {
        color: #ffd700;
    }

    .page-ae-88__button {
        display: inline-block;
        padding: 12px 25px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-align: center;
        white-space: nowrap;
    }

    .page-ae-88__button--primary {
        background-color: #ffd700; /* Gold */
        color: #1a1a1a;
    }

    .page-ae-88__button--primary:hover {
        background-color: #e6c200;
        transform: translateY(-2px);
    }

    .page-ae-88__button--secondary {
        background-color: #007bff; /* Blue */
        color: #fff;
        border: 1px solid #007bff;
    }

    .page-ae-88__button--secondary:hover {
        background-color: #0056b3;
        border-color: #0056b3;
        transform: translateY(-2px);
    }

    .page-ae-88__button--large {
        padding: 15px 30px;
        font-size: 1.1em;
        border-radius: 8px;
    }

    /* Hero Section */
    .page-ae-88__hero-section {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
        padding-top: 10px; /* Decorative padding */
        padding-bottom: 60px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .page-ae-88__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
        opacity: 0.3;
    }

    .page-ae-88__hero-title {
        font-size: 3.5em;
        color: #fff;
        margin-bottom: 15px;
        font-weight: bold;
        line-height: 1.2;
    }

    .page-ae-88__hero-subtitle {
        font-size: 1.3em;
        color: #ccc;
        margin-bottom: 30px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-ae-88__hero-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    /* Product Showcase */
    .page-ae-88__product-showcase {
        padding: 60px 0;
        background-color: #222;
    }

    .page-ae-88__product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        justify-content: center;
    }

    .page-ae-88__product-item {
        background-color: #2a2a2a;
        border-radius: 10px;
        overflow: hidden;
        text-align: center;
        padding-bottom: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

    .page-ae-88__product-item:hover {
        transform: translateY(-5px);
    }

    .page-ae-88__product-image {
        width: 100%;
        height: 250px;
        object-fit: cover;
        display: block;
        margin-bottom: 15px;
        max-width: 100%;
    }

    .page-ae-88__product-title {
        font-size: 1.6em;
        color: #ffd700;
        margin-bottom: 10px;
    }

    .page-ae-88__product-text {
        font-size: 0.95em;
        color: #ccc;
        padding: 0 15px;
    }

    /* Promotions Section */
    .page-ae-88__promotions-section {
        padding: 60px 0;
        background-color: #1a1a1a;
    }

    .page-ae-88__promo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        justify-content: center;
    }

    .page-ae-88__promo-item {
        background-color: #2a2a2a;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

    .page-ae-88__promo-item:hover {
        transform: translateY(-5px);
    }

    .page-ae-88__promo-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }

    .page-ae-88__promo-title {
        font-size: 1.4em;
        color: #ffd700;
        padding: 15px 20px 10px;
    }

    .page-ae-88__promo-text {
        font-size: 0.9em;
        color: #ccc;
        padding: 0 20px 20px;
    }

    /* Why Choose Us Section */
    .page-ae-88__why-choose-us {
        padding: 60px 0;
        background-color: #222;
    }

    .page-ae-88__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        justify-content: center;
    }

    .page-ae-88__feature-item {
        background-color: #2a2a2a;
        border-radius: 10px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

    .page-ae-88__feature-item:hover {
        transform: translateY(-5px);
    }

    .page-ae-88__feature-icon {
        width: 100px;
        height: 100px;
        object-fit: contain;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .page-ae-88__feature-title {
        font-size: 1.5em;
        color: #ffd700;
        margin-bottom: 10px;
    }

    .page-ae-88__feature-description {
        font-size: 0.95em;
        color: #ccc;
    }

    /* Payment & Providers Section */
    .page-ae-88__payment-providers {
        padding: 60px 0;
        background-color: #1a1a1a;
    }

    .page-ae-88__subsection {
        margin-bottom: 40px;
    }

    .page-ae-88__subsection-title {
        font-size: 2em;
        color: #fff;
        text-align: center;
        margin-bottom: 30px;
    }

    .page-ae-88__logos-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .page-ae-88__logo-item {
        width: 150px;
        height: 80px;
        object-fit: contain;
        background-color: #333;
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        transition: transform 0.2s ease;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-ae-88__logo-item:hover {
        transform: translateY(-3px);
    }

    /* FAQ Section */
    .page-ae-88__faq-section {
        padding: 60px 0;
        background-color: #222;
    }

    .page-ae-88__faq-list {
        max-width: 900px;
        margin: 0 auto;
    }

    .page-ae-88__faq-item {
        background-color: #2a2a2a;
        margin-bottom: 10px;
        border-radius: 8px;
        overflow: hidden;
        color: #fff;
    }

    .page-ae-88__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        user-select: none;
        background-color: #333;
        border-bottom: 1px solid #444;
    }

    .page-ae-88__faq-question:hover {
        background-color: #444;
    }

    .page-ae-88__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        font-weight: 600;
        color: #ffd700; /* Gold color for question */
        pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-ae-88__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: #ffd700;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-ae-88__faq-item.active .page-ae-88__faq-toggle {
        transform: rotate(45deg); /* Plus sign rotates to form an 'x' or 'minus' visually */
    }

    .page-ae-88__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        background-color: #2a2a2a;
        color: #ccc;
        font-size: 0.95em;
        line-height: 1.6;
    }

    .page-ae-88__faq-item.active .page-ae-88__faq-answer {
        max-height: 2000px !important; /* Sufficiently large value */
        padding: 20px 20px !important;
        opacity: 1;
    }

    /* CTA Download Section */
    .page-ae-88__cta-download {
        padding: 80px 0;
        background-color: #1a1a1a;
        text-align: center;
    }

    .page-ae-88__cta-title {
        font-size: 2.8em;
        color: #ffd700;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .page-ae-88__cta-description {
        font-size: 1.2em;
        color: #ccc;
        margin-bottom: 40px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Floating Buttons */
    .page-ae-88__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }

    .page-ae-88__button--register,
    .page-ae-88__button--login {
        padding: 12px 25px;
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        text-align: center;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        white-space: nowrap;
    }

    .page-ae-88__button--register {
        background-color: #ffd700; /* Gold */
        color: #1a1a1a;
    }

    .page-ae-88__button--register:hover {
        background-color: #e6c200;
        transform: translateY(-2px);
    }

    .page-ae-88__button--login {
        background-color: #007bff; /* Blue */
        color: #fff;
    }

    .page-ae-88__button--login:hover {
        background-color: #0056b3;
        transform: translateY(-2px);
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
        .page-ae-88__container {
            padding: 15px;
        }

        .page-ae-88__section-title {
            font-size: 2em;
            margin-bottom: 15px;
        }

        .page-ae-88__section-description {
            font-size: 1em;
            margin-bottom: 20px;
        }

        .page-ae-88__hero-section {
            padding-bottom: 40px;
        }

        .page-ae-88__hero-title {
            font-size: 2.2em;
            margin-bottom: 10px;
        }

        .page-ae-88__hero-subtitle {
            font-size: 1em;
            margin-bottom: 20px;
        }

        .page-ae-88__hero-buttons {
            flex-direction: column;
            gap: 15px;
        }

        .page-ae-88__button--primary,
        .page-ae-88__button--secondary {
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
            padding: 12px 20px;
        }

        .page-ae-88__product-showcase,
        .page-ae-88__promotions-section,
        .page-ae-88__why-choose-us,
        .page-ae-88__payment-providers,
        .page-ae-88__faq-section,
        .page-ae-88__cta-download {
            padding: 40px 0;
        }

        /* General mobile responsiveness for grid items */
        .page-ae-88__product-item,
        .page-ae-88__promo-item,
        .page-ae-88__feature-item,
        .page-ae-88__logo-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 15px !important; /* Adjust padding for mobile */
        }

        .page-ae-88__product-grid,
        .page-ae-88__promo-grid,
        .page-ae-88__features-grid,
        .page-ae-88__logos-grid {
            flex-direction: column;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important; /* Remove container padding if any */
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-ae-88__product-title,
        .page-ae-88__promo-title,
        .page-ae-88__feature-title {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        .page-ae-88__product-text,
        .page-ae-88__promo-text,
        .page-ae-88__feature-description {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-ae-88__product-image,
        .page-ae-88__promo-image,
        .page-ae-88__feature-icon,
        .page-ae-88__logo-item {
            max-width: 100% !important;
            height: auto !important;
        }

        .page-ae-88__subsection-title {
            font-size: 1.5em;
        }

        /* FAQ specific mobile styles */
        .page-ae-88__faq-question {
            padding: 12px 15px;
        }
        .page-ae-88__faq-question h3 {
            font-size: 1em;
        }
        .page-ae-88__faq-answer {
            padding: 0 15px;
            font-size: 0.9em;
        }
        .page-ae-88__faq-item.active .page-ae-88__faq-answer {
            padding: 15px 15px !important;
        }

        .page-ae-88__cta-title {
            font-size: 2em;
        }

        .page-ae-88__cta-description {
            font-size: 1em;
        }

        .page-ae-88__floating-buttons {
            bottom: 15px;
            right: 15px;
            gap: 8px;
        }
        .page-ae-88__button--register,
        .page-ae-88__button--login {
            padding: 10px 20px;
            font-size: 0.9em;
        }
    }
  