
    /* General Page Styles */
    .page-188cm {
        background-color: #1a1a1a; /* Dark background */
        color: #f0f0f0; /* Light text */
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        padding-top: var(--header-offset, 122px); /* Fallback for header offset */
        overflow-x: hidden; /* Prevent horizontal scroll on small screens */
    }

    .page-188cm__section-title {
        font-size: 32px;
        color: #ffffff;
        text-align: center;
        margin-bottom: 40px;
        padding-top: 20px; /* Add some top padding to sections */
        position: relative;
        font-weight: bold;
    }

    .page-188cm__section-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background-color: #ffcc00; /* Accent color */
        margin: 10px auto 0;
        border-radius: 2px;
    }

    /* Hero Section */
    .page-188cm__hero-section {
        position: relative;
        padding: 60px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        min-height: 500px;
        background-color: #0d0d0d; /* Even darker for hero */
        padding-top: 10px; /* Small decorative top padding, as body has main offset */
    }

    .page-188cm__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3; /* Darken background image */
        z-index: 1;
        max-width: 100%; /* Ensure responsiveness */
        height: auto; /* Ensure aspect ratio */
    }

    .page-188cm__hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        margin: 0 auto;
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background for text */
        border-radius: 10px;
    }

    .page-188cm__hero-title {
        font-size: 42px;
        color: #ffcc00;
        margin-bottom: 20px;
        line-height: 1.2;
        font-weight: bold;
    }

    .page-188cm__hero-description {
        font-size: 18px;
        margin-bottom: 30px;
        color: #e0e0e0;
    }

    /* Call to Action Button */
    .page-188cm__cta-button {
        display: inline-block;
        background-color: #ffcc00;
        color: #1a1a1a;
        padding: 15px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        font-size: 20px;
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-188cm__cta-button:hover {
        background-color: #e6b800;
        transform: translateY(-2px);
    }

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

    .page-188cm__button {
        display: block;
        padding: 12px 20px;
        border-radius: 50px;
        text-align: center;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        min-width: 120px;
        font-size: 16px;
    }

    .page-188cm__button--register {
        background-color: #007bff; /* Example blue */
        color: #ffffff;
    }

    .page-188cm__button--register:hover {
        background-color: #0056b3;
        transform: translateY(-2px);
    }

    .page-188cm__button--login {
        background-color: #28a745; /* Example green */
        color: #ffffff;
    }

    .page-188cm__button--login:hover {
        background-color: #1e7e34;
        transform: translateY(-2px);
    }

    /* About Section */
    .page-188cm__about-section {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .page-188cm__about-content {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 30px;
        margin-top: 30px;
        justify-content: center;
    }

    .page-188cm__about-image {
        flex: 1;
        min-width: 300px;
        max-width: 500px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        max-width: 100%; /* Responsive */
        height: auto; /* Responsive */
        object-fit: cover;
        box-sizing: border-box; /* Ensure padding/border is included */
    }

    .page-188cm__about-text {
        flex: 2;
        min-width: 300px;
        text-align: left;
        font-size: 17px;
        color: #e0e0e0;
    }

    /* Product Display Section */
    .page-188cm__products-section {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .page-188cm__products-intro {
        font-size: 18px;
        margin-bottom: 40px;
        color: #e0e0e0;
    }

    .page-188cm__product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 30px;
        justify-items: center;
    }

    .page-188cm__product-card {
        background-color: #2c2c2c;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
        transition: transform 0.3s ease;
        width: 100%; /* Default for grid item */
        box-sizing: border-box; /* Include padding/border in width */
    }

    .page-188cm__product-card:hover {
        transform: translateY(-5px);
    }

    .page-188cm__product-image {
        width: 100%;
        height: 200px; /* Fixed height for consistency */
        object-fit: cover;
        max-width: 100%; /* Responsive */
        box-sizing: border-box; /* Responsive container */
    }

    .page-188cm__product-title {
        font-size: 22px;
        color: #ffcc00;
        margin: 20px 15px 10px;
        font-weight: bold;
    }

    .page-188cm__product-description {
        font-size: 15px;
        color: #cccccc;
        padding: 0 15px 20px;
    }

    /* Promotions Section */
    .page-188cm__promotions-section {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .page-188cm__promotions-intro {
        font-size: 18px;
        margin-bottom: 40px;
        color: #e0e0e0;
    }

    .page-188cm__promotions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-bottom: 40px;
        justify-items: center;
    }

    .page-188cm__promotion-card {
        background-color: #2c2c2c;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
        transition: transform 0.3s ease;
        width: 100%; /* Default for grid item */
        box-sizing: border-box; /* Include padding/border in width */
    }

    .page-188cm__promotion-card:hover {
        transform: translateY(-5px);
    }

    .page-188cm__promotion-image {
        width: 100%;
        height: 220px; /* Fixed height for consistency */
        object-fit: cover;
        max-width: 100%; /* Responsive */
        box-sizing: border-box; /* Responsive container */
    }

    .page-188cm__promotion-title {
        font-size: 22px;
        color: #ffcc00;
        margin: 20px 15px 10px;
        font-weight: bold;
    }

    .page-188cm__promotion-description {
        font-size: 15px;
        color: #cccccc;
        padding: 0 15px 20px;
    }

    .page-188cm__cta-button--large {
        padding: 18px 35px;
        font-size: 22px;
    }

    /* FAQ Section */
    .page-188cm__faq-section {
        padding: 40px 20px;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-188cm__faq-container {
        margin-top: 30px;
    }

    .page-188cm__faq-item {
        background-color: #2c2c2c;
        margin-bottom: 10px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-188cm__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: #3a3a3a;
        color: #ffffff;
        cursor: pointer;
        user-select: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
        border-radius: 8px;
    }

    .page-188cm__faq-question:hover {
        background-color: #4a4a4a;
    }

    .page-188cm__faq-question-title {
        margin: 0;
        font-size: 18px;
        color: #ffffff;
        pointer-events: none; /* Crucial for click handling */
    }

    .page-188cm__faq-toggle {
        font-size: 24px;
        line-height: 1;
        transition: transform 0.3s ease;
        pointer-events: none; /* Crucial for click handling */
    }

    /* No rotation for '-' as per requirement, just text change */
    /* .page-188cm__faq-item.active .page-188cm__faq-toggle {
        transform: rotate(45deg); 
    } */

    .page-188cm__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-188cm__faq-item.active .page-188cm__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px !important; /* Adjusted padding for content */
        opacity: 1;
    }

    .page-188cm__faq-answer p {
        margin: 0;
        line-height: 1.6;
    }

    /* Final Call to Action Section */
    .page-188cm__cta-final {
        background-color: #0d0d0d;
        padding: 60px 20px;
        text-align: center;
        margin-top: 40px;
    }

    .page-188cm__cta-final .page-188cm__section-title {
        color: #ffcc00;
    }

    .page-188cm__cta-description {
        font-size: 20px;
        max-width: 800px;
        margin: 0 auto 40px;
        color: #e0e0e0;
    }

    .page-188cm__cta-button--final {
        background-color: #007bff; /* Different color for final CTA */
        color: #ffffff;
    }

    .page-188cm__cta-button--final:hover {
        background-color: #0056b3;
    }


    /* Responsive Design */
    @media (max-width: 1024px) {
        .page-188cm__hero-title {
            font-size: 36px;
        }
        .page-188cm__hero-description {
            font-size: 16px;
        }
        .page-188cm__section-title {
            font-size: 28px;
        }
    }

    @media (max-width: 768px) {
        .page-188cm__hero-section {
            padding: 40px 15px;
            min-height: 400px;
        }
        .page-188cm__hero-title {
            font-size: 30px;
        }
        .page-188cm__hero-description {
            font-size: 15px;
        }
        .page-188cm__cta-button {
            font-size: 18px;
            padding: 12px 25px;
        }

        .page-188cm__floating-buttons {
            flex-direction: row;
            width: calc(100% - 40px);
            left: 20px;
            right: 20px;
            bottom: 15px;
            justify-content: space-around;
            gap: 8px;
        }
        .page-188cm__button {
            flex: 1;
            padding: 10px 15px;
            font-size: 15px;
            min-width: unset;
        }

        .page-188cm__about-content {
            flex-direction: column;
        }
        .page-188cm__about-image,
        .page-188cm__about-text {
            min-width: unset;
            width: 100%;
        }
        .page-188cm__about-text {
            text-align: center;
        }

        .page-188cm__product-grid,
        .page-188cm__promotions-grid {
            grid-template-columns: 1fr; /* Single column on mobile */
        }
        .page-188cm__product-card,
        .page-188cm__promotion-card {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }
        .page-188cm__product-image,
        .page-188cm__promotion-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        .page-188cm__section-title {
            font-size: 24px;
            margin-bottom: 30px;
        }
        .page-188cm__products-intro,
        .page-188cm__promotions-intro {
            font-size: 16px;
        }

        .page-188cm__faq-question {
            padding: 12px 15px;
        }
        .page-188cm__faq-question-title {
            font-size: 16px;
        }
        .page-188cm__faq-answer {
            padding: 0 15px;
        }
        .page-188cm__faq-item.active .page-188cm__faq-answer {
            padding: 15px !important;
        }

        .page-188cm__cta-description {
            font-size: 16px;
        }
        .page-188cm__cta-button--large {
            font-size: 18px;
            padding: 15px 30px;
        }
    }
  