
    /* General styling for page-58wim */
    .page-58wim {
        font-family: 'Arial', sans-serif;
        color: #333;
        background-color: #f8f8f8;
        line-height: 1.6;
        overflow-x: hidden; /* Prevent horizontal scroll */
    }

    /* Section styling */
    .page-58wim__section-title {
        font-size: 2.2em;
        color: #0056b3; /* Dark blue for titles */
        text-align: center;
        margin-bottom: 20px;
        padding-top: 40px;
        font-weight: bold;
    }

    .page-58wim__section-description {
        font-size: 1.1em;
        text-align: center;
        margin-bottom: 40px;
        color: #555;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 15px;
    }

    /* Buttons */
    .page-58wim__btn {
        display: inline-block;
        padding: 12px 25px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-align: center;
        white-space: nowrap;
        cursor: pointer;
    }

    .page-58wim__btn--primary {
        background-color: #ff4500; /* Orange-red */
        color: #fff;
        border: 2px solid #ff4500;
    }

    .page-58wim__btn--primary:hover {
        background-color: #e63900;
        transform: translateY(-2px);
    }

    .page-58wim__btn--secondary {
        background-color: transparent;
        color: #ff4500;
        border: 2px solid #ff4500;
        margin-left: 15px;
    }

    .page-58wim__btn--secondary:hover {
        background-color: #ff4500;
        color: #fff;
        transform: translateY(-2px);
    }

    .page-58wim__btn--cta {
        background-color: #008000; /* Green for CTA */
        color: #fff;
        border: 2px solid #008000;
        display: block;
        width: fit-content;
        margin: 30px auto 0 auto;
    }

    .page-58wim__btn--cta:hover {
        background-color: #006400;
        transform: translateY(-2px);
    }

    /* Hero Section */
    .page-58wim__hero-section {
        position: relative;
        width: 100%;
        height: 60vh; /* Adjust height for visual impact */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #fff;
        overflow: hidden;
        padding-top: 10px; /* Small decorative padding, assuming body padding-top is handled */
        min-height: 400px; /* Minimum height for desktop */
    }

    .page-58wim__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
        filter: brightness(0.7); /* Darken image for text readability */
    }

    .page-58wim__hero-content {
        position: relative;
        z-index: 1;
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
        border-radius: 10px;
        max-width: 90%;
    }

    .page-58wim__brand-title {
        font-size: 4em;
        margin-bottom: 10px;
        font-weight: 900;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        color: #ffd700; /* Gold color for brand title */
    }

    .page-58wim__hero-slogan {
        font-size: 1.8em;
        margin-bottom: 30px;
        font-weight: 500;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }

    .page-58wim__hero-buttons {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

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

    .page-58wim__floating-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 120px;
        height: 50px;
        border-radius: 25px;
        font-weight: bold;
        font-size: 1.1em;
        color: #fff;
        text-decoration: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s ease, transform 0.2s ease;
        cursor: pointer;
    }

    .page-58wim__floating-btn--register {
        background-color: #ff4500; /* Orange-red */
    }

    .page-58wim__floating-btn--register:hover {
        background-color: #e63900;
        transform: translateY(-3px);
    }

    .page-58wim__floating-btn--login {
        background-color: #0056b3; /* Dark blue */
    }

    .page-58wim__floating-btn--login:hover {
        background-color: #004080;
        transform: translateY(-3px);
    }


    /* Products Section */
    .page-58wim__products-section {
        padding: 60px 20px;
        background-color: #fff;
    }

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

    .page-58wim__product-item {
        background-color: #f0f0f0;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: transform 0.3s ease;
    }

    .page-58wim__product-item:hover {
        transform: translateY(-5px);
    }

    .page-58wim__product-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
        max-width: 100%;
    }

    .page-58wim__product-title {
        font-size: 1.5em;
        color: #0056b3;
        margin: 15px 10px 5px 10px;
    }

    .page-58wim__product-text {
        padding: 0 15px 20px 15px;
        color: #666;
    }

    /* Promotions Section */
    .page-58wim__promotions-section {
        padding: 60px 20px;
        background-color: #eef7ff;
    }

    .page-58wim__promotion-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin: 0 auto 30px auto;
        max-width: 800px;
        overflow: hidden;
        text-align: center;
    }

    .page-58wim__promotion-image {
        width: 100%;
        height: 250px;
        object-fit: cover;
        display: block;
        max-width: 100%;
    }

    .page-58wim__promotion-content {
        padding: 25px;
    }

    .page-58wim__promotion-title {
        font-size: 1.8em;
        color: #ff4500;
        margin-bottom: 10px;
    }

    .page-58wim__promotion-description {
        font-size: 1.1em;
        color: #555;
    }

    /* About Section */
    .page-58wim__about-section {
        padding: 60px 20px;
        background-color: #fff;
    }

    .page-58wim__about-content {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-58wim__about-image {
        flex: 1;
        min-width: 300px;
        max-width: 500px;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        object-fit: cover;
        max-width: 100%; /* Ensure responsiveness */
    }

    .page-58wim__about-list {
        flex: 2;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .page-58wim__about-list-item {
        background-color: #f0f0f0;
        border-left: 5px solid #0056b3;
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 5px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .page-58wim__list-item-title {
        font-size: 1.4em;
        color: #0056b3;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .page-58wim__list-item-description {
        color: #666;
    }

    /* News Section */
    .page-58wim__news-section {
        padding: 60px 20px;
        background-color: #f8f8f8;
    }

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

    .page-58wim__news-item {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: transform 0.3s ease;
    }

    .page-58wim__news-item:hover {
        transform: translateY(-5px);
    }

    .page-58wim__news-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
        max-width: 100%;
    }

    .page-58wim__news-content {
        padding: 20px;
    }

    .page-58wim__news-title {
        font-size: 1.5em;
        color: #0056b3;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .page-58wim__news-date {
        font-size: 0.9em;
        color: #888;
        margin-bottom: 15px;
    }

    .page-58wim__news-excerpt {
        color: #666;
    }

    /* FAQ Section */
    .page-58wim__faq-section {
        padding: 60px 20px;
        background-color: #eef7ff;
    }

    .page-58wim__faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .page-58wim__faq-item {
        background-color: #fff;
        margin-bottom: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    .page-58wim__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        background-color: #0056b3;
        color: #fff;
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-58wim__faq-question:hover {
        background-color: #004080;
    }

    .page-58wim__faq-question-title {
        font-size: 1.3em;
        margin: 0;
        flex-grow: 1;
        text-align: left;
        pointer-events: none; /* Prevent text selection interfering with click */
    }

    .page-58wim__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon interfering with click */
    }

    .page-58wim__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px; /* Initial padding, will change on active */
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        background-color: #f9f9f9;
        color: #333;
    }

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

    .page-58wim__faq-item.active .page-58wim__faq-toggle {
        transform: rotate(45deg); /* Plus to X/Minus */
    }

    .page-58wim__faq-answer p {
        margin: 0;
        padding-bottom: 10px; /* Add some space if multiple paragraphs */
    }

    /* Call to Action Section */
    .page-58wim__cta-section {
        padding: 60px 20px;
        background-color: #0056b3;
        color: #fff;
        text-align: center;
    }

    .page-58wim__cta-section .page-58wim__section-title {
        color: #ffd700;
    }

    .page-58wim__cta-description {
        font-size: 1.2em;
        max-width: 700px;
        margin: 0 auto 30px auto;
    }

    /* Partners & Payment Section */
    .page-58wim__partners-section {
        padding: 60px 20px;
        background-color: #fff;
    }

    .page-58wim__partners-grid,
    .page-58wim__payment-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        max-width: 1200px;
        margin: 40px auto;
        justify-items: center;
    }

    .page-58wim__partner-item,
    .page-58wim__payment-item {
        background-color: #f0f0f0;
        border-radius: 8px;
        padding: 15px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100px;
        width: 100%;
        box-sizing: border-box;
    }

    .page-58wim__partner-logo,
    .page-58wim__payment-logo {
        max-width: 100%;
        max-height: 80px; /* Limit height to keep logos consistent */
        height: auto;
        display: block;
        object-fit: contain;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .page-58wim__hero-section {
            height: 50vh;
        }
        .page-58wim__brand-title {
            font-size: 3.5em;
        }
        .page-58wim__hero-slogan {
            font-size: 1.5em;
        }
        .page-58wim__section-title {
            font-size: 2em;
        }
        .page-58wim__promotion-title {
            font-size: 1.6em;
        }
    }

    @media (max-width: 768px) {
        .page-58wim__hero-section {
            height: 40vh;
            min-height: 300px;
        }
        .page-58wim__brand-title {
            font-size: 2.8em;
        }
        .page-58wim__hero-slogan {
            font-size: 1.3em;
        }
        .page-58wim__hero-buttons {
            flex-direction: column;
            gap: 10px;
        }
        .page-58wim__btn {
            width: 80%;
            margin: 0 auto;
        }
        .page-58wim__btn--secondary {
            margin-left: 0;
        }

        .page-58wim__floating-buttons {
            bottom: 15px;
            right: 15px;
            gap: 8px;
        }
        .page-58wim__floating-btn {
            width: 100px;
            height: 45px;
            font-size: 1em;
        }

        .page-58wim__section-title {
            font-size: 1.8em;
            padding-top: 30px;
        }
        .page-58wim__section-description {
            font-size: 1em;
            margin-bottom: 30px;
        }

        /* List items responsive */
        .page-58wim__about-list,
        .page-58wim__product-grid,
        .page-58wim__news-grid,
        .page-58wim__partners-grid,
        .page-58wim__payment-grid {
            display: flex; /* Change to flex for full width items */
            flex-direction: column;
            gap: 20px;
            padding: 0 15px !important; /* Ensure padding is controlled, matches section padding */
            margin-left: 0 !important;
            margin-right: 0 !important;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        .page-58wim__product-item,
        .page-58wim__news-item,
        .page-58wim__about-list-item,
        .page-58wim__partner-item,
        .page-58wim__payment-item {
            width: 100% !important;
            max-width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-58wim__about-content {
            flex-direction: column;
        }
        .page-58wim__about-image {
            min-width: unset;
            width: 100%;
        }
        .page-58wim__promotion-card {
            flex-direction: column;
        }
        .page-58wim__promotion-image {
            height: 200px;
        }
        .page-58wim__promotion-title {
            font-size: 1.5em;
        }

        .page-58wim__faq-question {
            padding: 15px 20px;
        }
        .page-58wim__faq-question-title {
            font-size: 1.1em;
        }
        .page-58wim__faq-toggle {
            font-size: 1.5em;
        }
        .page-58wim__faq-answer {
            padding: 0 20px;
        }
        .page-58wim__faq-item.active .page-58wim__faq-answer {
            padding: 15px 20px !important;
        }
    }

    @media (max-width: 480px) {
        .page-58wim__brand-title {
            font-size: 2.2em;
        }
        .page-58wim__hero-slogan {
            font-size: 1.1em;
        }
        .page-58wim__btn {
            padding: 10px 20px;
            font-size: 1em;
        }
        .page-58wim__section-title {
            font-size: 1.5em;
        }
        .page-58wim__promotion-title {
            font-size: 1.3em;
        }
        .page-58wim__faq-question-title {
            font-size: 1em;
        }
    }
  