
    .page-189wg {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0; /* Light text for dark background */
        background-color: #1a1a2e; /* Dark background */
        line-height: 1.6;
        padding-top: var(--header-offset, 122px); /* Default if shared.css doesn't apply it to body */
    }

    /* Container for consistent content width */
    .page-189wg__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
    }

    /* Section Titles */
    .page-189wg__section-title {
        font-size: 2.5em;
        color: #e94560; /* Accent color */
        text-align: center;
        margin-bottom: 40px;
        text-transform: uppercase;
        font-weight: bold;
        line-height: 1.2;
    }

    /* Hero Section */
    .page-189wg__hero-section {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: 600px;
        padding: 10px 20px 60px; /* 10px top padding for hero after header offset */
        background: linear-gradient(135deg, #2a0000, #4d0000); /* Dark red gradient */
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-189wg__hero-image-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 0;
    }

    .page-189wg__hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3;
        max-width: 100%;
    }

    .page-189wg__hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
    }

    .page-189wg__hero-title {
        font-size: 3.5em;
        color: #ffffff;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        line-height: 1.1;
        word-wrap: break-word;
    }

    .page-189wg__hero-subtitle {
        font-size: 1.5em;
        color: #f0f0f0;
        margin-bottom: 40px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
        word-wrap: break-word;
    }

    .page-189wg__hero-cta {
        display: inline-block;
        background-color: #c73751; /* Darker red for better contrast */
        color: #ffffff;
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-189wg__hero-cta:hover {
        background-color: #a82d45;
        transform: translateY(-3px);
    }

    /* About Section */
    .page-189wg__about-section {
        padding: 60px 0;
        background-color: #2c2c4d;
    }

    .page-189wg__about-text {
        font-size: 1.1em;
        margin-bottom: 20px;
        text-align: justify;
        color: #e0e0e0;
    }

    .page-189wg__about-text strong {
        color: #e94560;
    }

    /* Products Section */
    .page-189wg__products-section {
        padding: 60px 0;
        background-color: #1a1a2e;
    }

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

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

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

    .page-189wg__product-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-bottom: 3px solid #e94560;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-189wg__product-title {
        font-size: 1.5em;
        color: #ffffff;
        margin: 20px 15px 10px;
        font-weight: bold;
        word-wrap: break-word;
    }

    .page-189wg__product-description {
        font-size: 1em;
        color: #cccccc;
        padding: 0 15px;
        word-wrap: break-word;
    }

    /* Promotions Section */
    .page-189wg__promotions-section {
        padding: 60px 0;
        background-color: #2c2c4d;
    }

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

    .page-189wg__promotion-item {
        background-color: #1a1a2e;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
        box-sizing: border-box;
    }

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

    .page-189wg__promotion-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-189wg__promotion-title {
        font-size: 1.4em;
        color: #e94560;
        margin: 20px 15px 10px;
        font-weight: bold;
        word-wrap: break-word;
    }

    .page-189wg__promotion-description {
        font-size: 1em;
        color: #cccccc;
        padding: 0 15px 20px;
        word-wrap: break-word;
    }

    .page-189wg__promotion-description strong {
        color: #e94560;
    }

    .page-189wg__promotion-cta {
        display: inline-block;
        background-color: #c73751;
        color: #ffffff;
        padding: 10px 20px;
        border-radius: 30px;
        text-decoration: none;
        font-size: 0.95em;
        font-weight: bold;
        margin-bottom: 20px;
        transition: background-color 0.3s ease;
    }

    .page-189wg__promotion-cta:hover {
        background-color: #a82d45;
    }

    /* Why Choose Section */
    .page-189wg__why-choose-section {
        padding: 60px 0;
        background-color: #1a1a2e;
    }

    .page-189wg__why-choose-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .page-189wg__why-choose-item {
        background-color: #2c2c4d;
        border-radius: 15px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        flex: 1 1 calc(25% - 30px);
        max-width: calc(25% - 30px);
        box-sizing: border-box;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-189wg__why-choose-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
    }

    .page-189wg__why-choose-icon {
        width: 100px;
        height: 100px;
        object-fit: contain;
        margin-bottom: 20px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-189wg__why-choose-heading {
        font-size: 1.4em;
        color: #e94560;
        margin-bottom: 10px;
        font-weight: bold;
        word-wrap: break-word;
    }

    .page-189wg__why-choose-text {
        font-size: 1em;
        color: #cccccc;
        word-wrap: break-word;
    }

    /* FAQ Section */
    .page-189wg__faq-section {
        padding: 60px 0;
        background-color: #2c2c4d;
    }

    .page-189wg__faq-list {
        max-width: 900px;
        margin: 0 auto;
    }

    .page-189wg__faq-item {
        background-color: #1a1a2e;
        border-radius: 10px;
        margin-bottom: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        overflow: hidden;
    }

    .page-189wg__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #2a0000;
        color: #ffffff;
        font-size: 1.2em;
        font-weight: bold;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-189wg__faq-question:hover {
        background-color: #3f0000;
    }

    .page-189wg__faq-question-title {
        margin: 0;
        flex-grow: 1;
        text-align: left;
        color: #ffffff;
        pointer-events: none;
        word-wrap: break-word;
    }

    .page-189wg__faq-toggle {
        font-size: 1.5em;
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none;
        line-height: 1;
    }

    .page-189wg__faq-item.active .page-189wg__faq-toggle {
        transform: rotate(45deg);
    }

    .page-189wg__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        background-color: #1a1a2e;
        color: #e0e0e0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        font-size: 1.05em;
        text-align: justify;
        box-sizing: border-box;
    }

    .page-189wg__faq-item.active .page-189wg__faq-answer {
        max-height: 2000px !important;
        padding: 20px 25px !important;
        opacity: 1;
    }

    .page-189wg__faq-answer p {
        margin: 0 0 10px;
    }

    .page-189wg__faq-answer p:last-child {
        margin-bottom: 0;
    }

    .page-189wg__faq-answer strong {
        color: #e94560;
    }

    /* Call to Action Section */
    .page-189wg__cta-section {
        padding: 60px 0;
        background-color: #e94560;
        text-align: center;
        color: #ffffff;
    }

    .page-189wg__cta-section .page-189wg__section-title {
        color: #ffffff;
        margin-bottom: 20px;
    }

    .page-189wg__cta-text {
        font-size: 1.2em;
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        word-wrap: break-word;
    }

    .page-189wg__cta-text strong {
        color: #1a1a2e;
    }

    .page-189wg__cta-button {
        display: inline-block;
        background-color: #1a1a2e;
        color: #ffffff;
        padding: 18px 35px;
        border-radius: 50px;
        text-decoration: none;
        font-size: 1.3em;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    .page-189wg__cta-button:hover {
        background-color: #000000;
        transform: translateY(-5px);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .page-189wg__hero-title {
            font-size: 3em;
        }
        .page-189wg__hero-subtitle {
            font-size: 1.3em;
        }
        .page-189wg__section-title {
            font-size: 2em;
        }
        .page-189wg__why-choose-item {
            flex: 1 1 calc(50% - 30px);
            max-width: calc(50% - 30px);
        }
    }

    @media (max-width: 768px) {
        .page-189wg__container {
            padding: 15px;
        }
        .page-189wg__hero-section {
            min-height: 500px;
            padding-bottom: 40px;
        }
        .page-189wg__hero-title {
            font-size: 2.5em;
        }
        .page-189wg__hero-subtitle {
            font-size: 1.1em;
        }
        .page-189wg__hero-cta {
            padding: 12px 25px;
            font-size: 1.1em;
        }
        .page-189wg__section-title {
            font-size: 1.8em;
            margin-bottom: 30px;
        }

        /* List items mobile responsive */
        .page-189wg__product-grid,
        .page-189wg__promotion-list,
        .page-189wg__why-choose-list {
            grid-template-columns: 1fr;
            gap: 20px;
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
        }

        .page-189wg__product-item,
        .page-189wg__promotion-item,
        .page-189wg__why-choose-item {
            flex: 1 1 100% !important;
            max-width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
            padding-left: 15px !important;
            padding-right: 15px !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            text-align: center;
        }

        .page-189wg__product-image,
        .page-189wg__promotion-image,
        .page-189wg__why-choose-icon {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        .page-189wg__faq-question {
            padding: 15px 20px;
            font-size: 1.1em;
        }

        .page-189wg__faq-answer {
            padding: 0 20px;
        }

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

        .page-189wg__cta-text {
            font-size: 1.1em;
        }
        .page-189wg__cta-button {
            padding: 15px 30px;
            font-size: 1.2em;
        }
    }

    @media (max-width: 480px) {
        .page-189wg__hero-title {
            font-size: 2em;
        }
        .page-189wg__hero-subtitle {
            font-size: 1em;
        }
        .page-189wg__section-title {
            font-size: 1.5em;
        }
        .page-189wg__faq-question {
            font-size: 1em;
        }
        .page-189wg__faq-answer {
            font-size: 0.95em;
        }
    }
  