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

    .page-88goals__section-title {
        font-size: 2.5em;
        color: #e6b31e; /* Gold accent */
        text-align: center;
        margin-bottom: 40px;
        padding-top: 20px;
        font-weight: bold;
    }

    .page-88goals__section-description {
        text-align: center;
        font-size: 1.1em;
        max-width: 800px;
        margin: 0 auto 50px auto;
        color: #cccccc;
    }

    /* Hero Section */
    .page-88goals__hero-section {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 500px; /* Minimum height */
        padding: 10px 20px 60px 20px; /* Add 10px top padding for offset, and more bottom for content */
        text-align: center;
        overflow: hidden;
        background-color: #0d0d1a; /* Even darker for hero */
    }

    .page-88goals__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3; /* Make background image subtle */
        z-index: 1;
        max-width: 100%; /* Ensure responsiveness */
    }

    .page-88goals__hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        margin: 0 auto;
        padding: 20px;
        background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
        border-radius: 10px;
    }

    .page-88goals__hero-title {
        font-size: 3em;
        color: #e6b31e;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .page-88goals__hero-subtitle {
        font-size: 1.3em;
        color: #ffffff;
        margin-bottom: 30px;
    }

    .page-88goals__promo-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap; /* Allow wrapping on small screens */
    }

    .page-88goals__promo-button {
        display: inline-block;
        background-color: #e6b31e;
        color: #1a1a2e;
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-88goals__promo-button:hover {
        background-color: #ffda6a;
        transform: translateY(-3px);
    }

    .page-88goals__promo-button--secondary {
        background-color: #3a3a5e;
        color: #e6b31e;
        border: 2px solid #e6b31e;
    }

    .page-88goals__promo-button--secondary:hover {
        background-color: #4a4a7e;
        color: #ffda6a;
        transform: translateY(-3px);
    }

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

    .page-88goals__floating-button {
        display: block;
        padding: 12px 20px;
        border-radius: 25px;
        font-weight: bold;
        text-align: center;
        text-decoration: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        transition: background-color 0.3s ease, transform 0.3s ease;
        min-width: 100px; /* Ensure buttons are wide enough */
    }

    .page-88goals__floating-button--register {
        background-color: #e6b31e;
        color: #1a1a2e;
    }

    .page-88goals__floating-button--register:hover {
        background-color: #ffda6a;
        transform: translateY(-2px);
    }

    .page-88goals__floating-button--login {
        background-color: #3a3a5e;
        color: #e6b31e;
        border: 1px solid #e6b31e;
    }

    .page-88goals__floating-button--login:hover {
        background-color: #4a4a7e;
        color: #ffda6a;
        transform: translateY(-2px);
    }

    /* Promotion Section */
    .page-88goals__promotion-banner {
        padding: 50px 20px;
        background-color: #22223b;
    }

    .page-88goals__promotion-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-88goals__promo-card {
        background-color: #3a3a5e;
        border-radius: 10px;
        overflow: hidden;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .page-88goals__promo-card:hover {
        transform: translateY(-5px);
    }

    .page-88goals__promo-card-image {
        width: 100%;
        height: 250px;
        object-fit: cover;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-88goals__promo-card-title {
        font-size: 1.5em;
        color: #e6b31e;
        margin: 20px 15px 10px 15px;
    }

    .page-88goals__promo-card-description {
        font-size: 1em;
        color: #cccccc;
        padding: 0 15px 20px 15px;
        flex-grow: 1;
    }

    /* Products Section */
    .page-88goals__products-section {
        padding: 50px 20px;
        background-color: #1a1a2e;
    }

    .page-88goals__product-categories {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-88goals__product-card {
        background-color: #22223b;
        border-radius: 10px;
        overflow: hidden;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .page-88goals__product-card:hover {
        transform: translateY(-5px);
    }

    .page-88goals__product-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-88goals__product-title {
        font-size: 1.4em;
        color: #e6b31e;
        margin: 20px 15px 10px 15px;
    }

    .page-88goals__product-description {
        font-size: 0.95em;
        color: #cccccc;
        padding: 0 15px 20px 15px;
        flex-grow: 1;
    }

    /* About Section */
    .page-88goals__about-section {
        padding: 50px 20px;
        background-color: #22223b;
    }

    .page-88goals__about-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 1000px;
        margin: 0 auto;
        gap: 30px;
    }

    .page-88goals__about-image {
        width: 100%;
        max-width: 500px;
        border-radius: 10px;
        object-fit: cover;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        max-height: 400px;
        box-sizing: border-box;
    }

    .page-88goals__about-text {
        font-size: 1.1em;
        color: #cccccc;
        text-align: justify;
    }

    .page-88goals__about-text p {
        margin-bottom: 15px;
    }

    /* Payment & Providers Section */
    .page-88goals__payment-providers-section {
        padding: 50px 20px;
        background-color: #1a1a2e;
    }

    .page-88goals__payment-providers-grid {
        display: grid;
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-88goals__sub-section-title {
        font-size: 2em;
        color: #e6b31e;
        text-align: center;
        margin-bottom: 30px;
    }

    .page-88goals__logo-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Adjusted for logos */
        gap: 20px;
        justify-content: center;
    }

    .page-88goals__logo-item {
        background-color: #22223b;
        border-radius: 8px;
        padding: 15px;
        text-align: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease;
        box-sizing: border-box; /* Crucial for list items */
        width: 100%; /* Ensure it takes full grid column width */
    }

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

    .page-88goals__logo-item a {
        text-decoration: none;
        color: inherit;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%; /* Make clickable area fill the card */
    }

    .page-88goals__logo-image {
        width: 100%; /* Adjusted for logos */
        max-width: 120px; /* Max width for logos */
        height: auto;
        object-fit: contain;
        margin-bottom: 10px;
        max-height: 80px; /* Control logo height */
        box-sizing: border-box;
    }

    .page-88goals__logo-name {
        font-size: 1em;
        font-weight: bold;
        color: #f0f0f0;
    }

    /* FAQ Section */
    .page-88goals__faq-section {
        padding: 50px 20px;
        background-color: #22223b;
    }

    .page-88goals__faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .page-88goals__faq-item {
        background-color: #3a3a5e;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    }

    .page-88goals__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #3a3a5e;
        color: #e6b31e;
        font-weight: bold;
        font-size: 1.1em;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-88goals__faq-question:hover {
        background-color: #4a4a7e;
    }

    .page-88goals__faq-question-text {
        margin: 0;
        flex-grow: 1;
        pointer-events: none; /* Prevent text from blocking click event */
        color: #e6b31e;
        font-size: 1.1em;
    }

    .page-88goals__faq-toggle {
        font-size: 1.8em;
        line-height: 1;
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click event */
        color: #ffffff;
    }

    .page-88goals__faq-item.active .page-88goals__faq-toggle {
        transform: rotate(45deg); /* Change '+' to 'X' or '-' */
        color: #e6b31e;
    }

    .page-88goals__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: #cccccc;
        background-color: #2a2a4a;
    }

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

    .page-88goals__faq-answer p {
        margin: 0;
        padding-bottom: 10px; /* Add some spacing if multiple paragraphs */
    }

    /* CTA Section */
    .page-88goals__cta-section {
        padding: 50px 20px;
        text-align: center;
        background-color: #1a1a2e;
    }

    .page-88goals__cta-button {
        display: inline-block;
        background-color: #e6b31e;
        color: #1a1a2e;
        padding: 15px 40px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.2em;
        transition: background-color 0.3s ease, transform 0.3s ease;
        margin-top: 30px;
        border: none;
        cursor: pointer;
    }

    .page-88goals__cta-button:hover {
        background-color: #ffda6a;
        transform: translateY(-3px);
    }


    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .page-88goals__hero-title {
            font-size: 2.5em;
        }
        .page-88goals__hero-subtitle {
            font-size: 1.1em;
        }
        .page-88goals__section-title {
            font-size: 2em;
        }
    }

    @media (max-width: 768px) {
        .page-88goals__hero-title {
            font-size: 2em;
        }
        .page-88goals__hero-subtitle {
            font-size: 1em;
        }
        .page-88goals__promo-buttons {
            flex-direction: column;
            gap: 15px;
        }
        .page-88goals__promo-button {
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
        }

        .page-88goals__floating-buttons {
            flex-direction: row;
            width: calc(100% - 40px);
            bottom: 10px;
            left: 20px;
            right: 20px;
            justify-content: space-around;
        }
        .page-88goals__floating-button {
            flex: 1;
            margin: 0 5px;
            padding: 10px 15px;
            font-size: 0.95em;
            min-width: unset;
        }

        .page-88goals__promotion-cards,
        .page-88goals__product-categories {
            grid-template-columns: 1fr;
        }

        .page-88goals__about-content {
            flex-direction: column;
        }
        .page-88goals__about-image {
            max-width: 100%;
        }

        .page-88goals__payment-providers-grid {
            grid-template-columns: 1fr;
        }
        .page-88goals__logo-list {
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* More compact for mobile */
            gap: 15px;
        }
        .page-88goals__logo-item {
            padding: 10px;
        }
        .page-88goals__logo-image {
            max-width: 100px;
            max-height: 60px;
        }
        .page-88goals__logo-name {
            font-size: 0.9em;
        }

        /* List item specific responsiveness */
        .page-88goals__logo-list li {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 10px !important; /* Adjust padding as needed */
        }
        .page-88goals__logo-list {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-88goals__logo-item a {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        .page-88goals__faq-question {
            padding: 15px 20px;
            font-size: 1em;
        }
        .page-88goals__faq-question-text {
            font-size: 1em;
        }
        .page-88goals__faq-toggle {
            font-size: 1.5em;
        }
        .page-88goals__faq-answer {
            padding: 0 20px;
        }
        .page-88goals__faq-item.active .page-88goals__faq-answer {
            padding: 15px 20px !important;
        }
    }

    @media (max-width: 480px) {
        .page-88goals__hero-title {
            font-size: 1.8em;
        }
        .page-88goals__hero-subtitle {
            font-size: 0.9em;
        }
        .page-88goals__promo-button {
            font-size: 1em;
            padding: 12px 20px;
        }
        .page-88goals__section-title {
            font-size: 1.8em;
        }
        .page-88goals__section-description {
            font-size: 0.9em;
        }
    }
  