
    .page-8beb {
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f8f8f8;
    }

    .page-8beb__hero-section {
        padding-top: 10px; /* Minimal decorative padding */
        position: relative;
        background: linear-gradient(135deg, #001f3f, #000d1a); /* Dark blue gradient */
        color: #ffffff;
        text-align: center;
        overflow: hidden;
        padding-bottom: 40px;
    }

    .page-8beb__hero-content {
        max-width: 90%;
        margin: 0 auto;
        padding: 40px 15px;
        position: relative;
        z-index: 2;
    }

    .page-8beb__hero-title {
        font-size: 2.5em;
        margin-bottom: 20px;
        color: #ffd700; /* Gold color for emphasis */
        line-height: 1.2;
    }

    .page-8beb__hero-description {
        font-size: 1.1em;
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-8beb__hero-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .page-8beb__primary-button,
    .page-8beb__secondary-button {
        display: inline-block;
        padding: 12px 25px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-align: center;
        box-sizing: border-box;
    }

    .page-8beb__primary-button {
        background-color: #ffd700; /* Gold */
        color: #001f3f; /* Dark blue */
        border: none;
        font-size: 1.1em;
    }

    .page-8beb__primary-button:hover {
        background-color: #e6c200;
        transform: translateY(-2px);
    }

    .page-8beb__secondary-button {
        background-color: #007bff; /* Blue */
        color: #ffffff;
        border: 2px solid #007bff;
        font-size: 1em;
    }

    .page-8beb__secondary-button:hover {
        background-color: #0056b3;
        border-color: #0056b3;
        transform: translateY(-2px);
    }

    .page-8beb__hero-image-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 1;
    }

    .page-8beb__hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3; /* Subtle background image */
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-8beb__section {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .page-8beb__section-title {
        font-size: 2em;
        color: #001f3f; /* Dark blue */
        margin-bottom: 40px;
        position: relative;
        padding-bottom: 15px;
    }

    .page-8beb__section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background-color: #ffd700; /* Gold accent */
        border-radius: 2px;
    }

    .page-8beb__text-content {
        font-size: 1.05em;
        color: #555;
        margin-bottom: 20px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Product Showcase */
    .page-8beb__product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-8beb__product-card {
        background-color: #ffffff;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        text-align: center;
        padding-bottom: 20px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box;
    }

    .page-8beb__product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

    .page-8beb__product-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        margin-bottom: 15px;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-8beb__product-title {
        font-size: 1.4em;
        color: #001f3f;
        margin-bottom: 10px;
        padding: 0 15px;
    }

    .page-8beb__product-description {
        font-size: 0.95em;
        color: #666;
        padding: 0 15px;
    }

    /* Promotion Section */
    .page-8beb__promotion-section {
        background-color: #e6f7ff; /* Light blue background */
        padding: 80px 20px;
    }

    .page-8beb__promotion-banner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        background-color: #ffffff;
        border-radius: 15px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        padding: 30px;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-8beb__promotion-image {
        width: 100%;
        max-width: 400px; /* Adjust size for mobile */
        border-radius: 10px;
        object-fit: cover;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-8beb__promotion-content {
        text-align: center;
    }

    .page-8beb__promotion-title {
        font-size: 2em;
        color: #001f3f;
        margin-bottom: 15px;
    }

    .page-8beb__promotion-description {
        font-size: 1.1em;
        color: #555;
        margin-bottom: 25px;
    }

    /* Why Choose Us */
    .page-8beb__why-choose-us {
        background-color: #f8f8f8;
    }

    .page-8beb__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-8beb__feature-item {
        background-color: #ffffff;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        padding: 30px;
        text-align: center;
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

    .page-8beb__feature-item:hover {
        transform: translateY(-5px);
    }

    .page-8beb__feature-icon {
        width: 100px;
        height: 100px;
        object-fit: contain;
        margin-bottom: 20px;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-8beb__feature-title {
        font-size: 1.3em;
        color: #001f3f;
        margin-bottom: 10px;
    }

    .page-8beb__feature-text {
        font-size: 0.95em;
        color: #666;
    }

    /* FAQ Section */
    .page-8beb__faq-section {
        background-color: #f0f0f0;
        padding-bottom: 80px;
    }

    .page-8beb__faq-container {
        max-width: 800px;
        margin: 40px auto 0 auto;
        text-align: left;
    }

    .page-8beb__faq-item {
        background-color: #ffffff;
        border-radius: 10px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        box-sizing: border-box;
    }

    .page-8beb__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #001f3f; /* Dark blue background for question */
        color: #ffffff;
        font-weight: bold;
        user-select: none;
        transition: background-color 0.3s ease;
        box-sizing: border-box;
    }

    .page-8beb__faq-question:hover {
        background-color: #003366;
    }

    .page-8beb__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        flex-grow: 1;
        pointer-events: none; /* Crucial for click handling */
        color: #ffffff; /* Ensure title color is white */
    }

    .page-8beb__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Crucial for click handling */
    }

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

    .page-8beb__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;
        background-color: #fefefe;
        color: #333;
        box-sizing: border-box;
    }

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

    .page-8beb__faq-answer p {
        margin: 0;
        font-size: 0.95em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    /* Call to Action Section */
    .page-8beb__cta-section {
        background-color: #001f3f; /* Dark blue */
        color: #ffffff;
        padding: 80px 20px;
    }

    .page-8beb__cta-section .page-8beb__section-title {
        color: #ffd700; /* Gold */
    }

    .page-8beb__cta-section .page-8beb__text-content {
        color: #e0e0e0;
    }

    .page-8beb__cta-buttons {
        margin-top: 40px;
    }

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

    .page-8beb__floating-button {
        display: block;
        width: 120px;
        padding: 12px 0;
        text-align: center;
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, background-color 0.3s ease;
        font-size: 1.05em;
        box-sizing: border-box;
    }

    .page-8beb__floating-button--register {
        background-color: #ffd700; /* Gold */
        color: #001f3f;
    }

    .page-8beb__floating-button--register:hover {
        background-color: #e6c200;
        transform: translateY(-3px);
    }

    .page-8beb__floating-button--login {
        background-color: #007bff; /* Blue */
        color: #ffffff;
    }

    .page-8beb__floating-button--login:hover {
        background-color: #0056b3;
        transform: translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-8beb__hero-section {
            padding-bottom: 20px;
        }

        .page-8beb__hero-content {
            padding: 30px 10px;
        }

        .page-8beb__hero-title {
            font-size: 1.8em;
        }

        .page-8beb__hero-description {
            font-size: 1em;
        }

        .page-8beb__hero-buttons {
            flex-direction: column;
            gap: 15px;
        }

        .page-8beb__primary-button,
        .page-8beb__secondary-button {
            width: 100%;
            max-width: 280px;
            margin: 0 auto;
            padding: 10px 20px;
            font-size: 1em;
        }

        .page-8beb__section {
            padding: 40px 15px;
        }

        .page-8beb__section-title {
            font-size: 1.6em;
            margin-bottom: 30px;
        }

        .page-8beb__text-content {
            font-size: 0.95em;
        }

        .page-8beb__product-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .page-8beb__product-image {
            height: 180px;
        }

        .page-8beb__promotion-banner {
            flex-direction: column;
            padding: 20px;
        }

        .page-8beb__promotion-image {
            max-width: 100%;
        }

        .page-8beb__promotion-title {
            font-size: 1.5em;
        }

        .page-8beb__promotion-description {
            font-size: 0.95em;
        }

        .page-8beb__features-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .page-8beb__feature-icon {
            width: 80px;
            height: 80px;
        }

        .page-8beb__faq-container {
            margin-top: 30px;
        }

        .page-8beb__faq-question {
            padding: 15px 20px;
        }

        .page-8beb__faq-question h3 {
            font-size: 1em;
        }

        .page-8beb__faq-toggle {
            font-size: 1.2em;
        }

        .page-8beb__faq-answer {
            padding: 0 20px;
        }

        .page-8beb__faq-item.active .page-8beb__faq-answer {
            padding: 15px 20px !important;
        }

        .page-8beb__floating-buttons {
            bottom: 15px;
            right: 15px;
            gap: 10px;
        }

        .page-8beb__floating-button {
            width: 100px;
            padding: 10px 0;
            font-size: 0.9em;
        }

        /* List item specific mobile responsive requirements */
        .page-8beb__product-card,
        .page-8beb__feature-item,
        .page-8beb__faq-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-8beb__product-grid,
        .page-8beb__features-grid,
        .page-8beb__faq-container {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
    }

    /* Ensure images are always responsive */
    .page-8beb img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    /* Text wrapping for long content */
    .page-8beb p, .page-8beb h1, .page-8beb h2, .page-8beb h3, .page-8beb h4, .page-8beb h5, .page-8beb h6 {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }
  