
    /* General styling for the page-88cld-com scope */
    .page-88cld-com {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0; /* Light grey text */
        background-color: #1a1a1a; /* Dark background */
        line-height: 1.6;
        overflow-x: hidden; /* Prevent horizontal scroll on mobile */
    }

    .page-88cld-com__section-title {
        font-size: 2.5em;
        color: #FFD700; /* Gold accent for titles */
        text-align: center;
        margin-bottom: 40px;
        padding-top: 50px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-88cld-com__main-title {
        font-size: 3em;
        color: #FFD700;
        text-align: center;
        margin-bottom: 20px;
        text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
    }

    .page-88cld-com__hero-description {
        font-size: 1.2em;
        color: #e0e0e0;
        text-align: center;
        max-width: 800px;
        margin: 0 auto 30px auto;
    }

    /* Hero Section */
    .page-88cld-com__hero-section {
        position: relative;
        padding: 100px 20px 60px; /* Adjusted padding-top for shared header offset */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        background-color: #0d0d0d;
        overflow: hidden;
        min-height: 600px;
        box-sizing: border-box;
    }

    .page-88cld-com__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3; /* Darken the background image */
        z-index: 0;
        max-width: 100%; /* Responsive image */
    }

    .page-88cld-com__hero-content {
        position: relative;
        z-index: 1;
        max-width: 100%;
    }

    .page-88cld-com__hero-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        margin-top: 30px;
    }

    .page-88cld-com__hero-button {
        display: inline-block;
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-88cld-com__hero-button--register {
        background-color: #007bff; /* Bright blue */
        color: #fff;
        border: 2px solid #007bff;
    }

    .page-88cld-com__hero-button--register:hover {
        background-color: #0056b3;
        border-color: #0056b3;
        transform: translateY(-3px);
    }

    .page-88cld-com__hero-button--login {
        background-color: transparent;
        color: #007bff;
        border: 2px solid #007bff;
    }

    .page-88cld-com__hero-button--login:hover {
        background-color: #007bff;
        color: #fff;
        transform: translateY(-3px);
    }

    /* Products Section */
    .page-88cld-com__products-section {
        padding: 60px 20px;
        background-color: #1a1a1a;
    }

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

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

    .page-88cld-com__product-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
    }

    .page-88cld-com__product-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        max-width: 100%;
        height: auto; /* Ensure responsive */
        display: block;
    }

    .page-88cld-com__product-title {
        color: #FFD700;
        font-size: 1.5em;
        margin: 20px 15px 10px;
    }

    .page-88cld-com__product-description {
        color: #cccccc;
        font-size: 0.95em;
        padding: 0 15px;
    }

    /* Promotions Section */
    .page-88cld-com__promotions-section {
        padding: 60px 20px;
        background-color: #0d0d0d;
    }

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

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

    .page-88cld-com__promo-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
    }

    .page-88cld-com__promo-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        max-width: 100%;
        height: auto; /* Ensure responsive */
        display: block;
    }

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

    .page-88cld-com__promo-description {
        color: #cccccc;
        font-size: 0.95em;
        padding: 0 15px;
    }

    /* About Section */
    .page-88cld-com__about-section {
        padding: 60px 20px;
        background-color: #1a1a1a;
    }

    .page-88cld-com__about-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .page-88cld-com__about-item {
        background-color: #2a2a2a;
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-88cld-com__about-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
    }

    .page-88cld-com__about-icon {
        width: 100px;
        height: 100px;
        object-fit: contain;
        margin-bottom: 20px;
        max-width: 100%;
        height: auto; /* Ensure responsive */
    }

    .page-88cld-com__about-title {
        color: #FFD700;
        font-size: 1.5em;
        margin-bottom: 10px;
    }

    .page-88cld-com__about-text {
        color: #cccccc;
        font-size: 0.95em;
    }

    /* News Section */
    .page-88cld-com__news-section {
        padding: 60px 20px;
        background-color: #0d0d0d;
    }

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

    .page-88cld-com__news-item {
        background-color: #2a2a2a;
        border-radius: 15px;
        overflow: hidden;
        padding-bottom: 20px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-88cld-com__news-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
    }

    .page-88cld-com__news-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        max-width: 100%;
        height: auto; /* Ensure responsive */
        display: block;
    }

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

    .page-88cld-com__news-date {
        color: #999;
        font-size: 0.85em;
        margin: 0 15px 10px;
    }

    .page-88cld-com__news-excerpt {
        color: #cccccc;
        font-size: 0.95em;
        padding: 0 15px;
    }

    /* FAQ Section */
    .page-88cld-com__faq-section {
        padding: 60px 20px;
        background-color: #1a1a1a;
    }

    .page-88cld-com__faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .page-88cld-com__faq-item {
        background-color: #2a2a2a;
        border-radius: 10px;
        margin-bottom: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        overflow: hidden;
    }

    .page-88cld-com__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        user-select: none;
        background-color: #333;
        color: #FFD700;
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .page-88cld-com__faq-question:hover {
        background-color: #444;
    }

    .page-88cld-com__faq-question-text {
        margin: 0;
        pointer-events: none; /* Prevent text from blocking click event */
        color: #FFD700;
        font-size: 1em; /* Adjust to fit parent font size */
    }

    .page-88cld-com__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

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

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

    .page-88cld-com__faq-item.active .page-88cld-com__faq-toggle {
        transform: rotate(45deg); /* Change '+' to 'x' or '-' */
    }

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

    .page-88cld-com__floating-button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 120px;
        height: 50px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1em;
        color: #fff;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-88cld-com__floating-button:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-88cld-com__floating-button--register {
        background-color: #007bff; /* Bright blue */
    }

    .page-88cld-com__floating-button--login {
        background-color: #28a745; /* Green */
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .page-88cld-com__main-title {
            font-size: 2.5em;
        }
        .page-88cld-com__section-title {
            font-size: 2em;
        }
    }

    @media (max-width: 768px) {
        .page-88cld-com__hero-section {
            padding: 80px 15px 40px;
            min-height: 500px;
        }
        .page-88cld-com__main-title {
            font-size: 2em;
        }
        .page-88cld-com__hero-description {
            font-size: 1em;
        }
        .page-88cld-com__hero-buttons {
            flex-direction: column;
            gap: 15px;
        }
        .page-88cld-com__hero-button {
            width: 80%;
            max-width: 300px;
            margin: 0 auto;
        }

        .page-88cld-com__section-title {
            font-size: 1.8em;
            padding-top: 30px;
            margin-bottom: 30px;
        }

        /* List items responsive */
        .page-88cld-com__product-grid,
        .page-88cld-com__promo-grid,
        .page-88cld-com__about-content,
        .page-88cld-com__news-grid {
            grid-template-columns: 1fr; /* Single column on mobile */
            gap: 20px;
            padding: 0 15px; /* Add some padding to the grid container */
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-88cld-com__product-item,
        .page-88cld-com__promo-item,
        .page-88cld-com__about-item,
        .page-88cld-com__news-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 20px 15px; /* Adjust padding for items */
        }

        .page-88cld-com__product-image,
        .page-88cld-com__promo-image,
        .page-88cld-com__about-icon,
        .page-88cld-com__news-image {
            max-width: 100% !important;
            height: auto !important;
            object-fit: cover;
        }

        .page-88cld-com__product-description,
        .page-88cld-com__promo-description,
        .page-88cld-com__about-text,
        .page-88cld-com__news-excerpt,
        .page-88cld-com__faq-answer p {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-88cld-com__faq-question {
            font-size: 1.1em;
            padding: 15px 20px;
        }
        .page-88cld-com__faq-answer {
            padding: 0 20px;
        }
        .page-88cld-com__faq-item.active .page-88cld-com__faq-answer {
            padding: 15px 20px !important;
        }

        .page-88cld-com__floating-buttons {
            bottom: 15px;
            right: 15px;
            gap: 10px;
        }
        .page-88cld-com__floating-button {
            width: 100px;
            height: 45px;
            font-size: 0.9em;
        }
    }

    @media (max-width: 480px) {
        .page-88cld-com__main-title {
            font-size: 1.8em;
        }
        .page-88cld-com__section-title {
            font-size: 1.6em;
        }
        .page-88cld-com__hero-section {
            padding: 60px 10px 30px;
        }
        .page-88cld-com__hero-button {
            font-size: 1em;
            padding: 12px 25px;
        }
        .page-88cld-com__faq-question {
            font-size: 1em;
            padding: 12px 15px;
        }
        .page-88cld-com__faq-answer {
            padding: 0 15px;
        }
        .page-88cld-com__faq-item.active .page-88cld-com__faq-answer {
            padding: 12px 15px !important;
        }
    }
  