
    /* Base styles for the page-w-88 */
.page-w-88 {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #1a1a1a; /* Dark background */
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll on mobile */
}

.page-w-88__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Header offset handling */
/* Assuming body padding-top is handled by shared.css var(--header-offset) */
.page-w-88__hero-section {
    padding-top: 10px; /* Decorative top padding */
    padding-bottom: 40px;
    text-align: center;
    background: linear-gradient(135deg, #3a0000, #1a1a1a); /* Dark gradient background */
}

.page-w-88__main-title {
    font-size: 2.5em;
    color: #ffd700; /* Gold accent color */
    margin-bottom: 15px;
    text-align: center;
    word-wrap: break-word; /* Ensure long titles break */
    overflow-wrap: break-word;
}

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

.page-w-88__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    display: block;
    margin: 0 auto;
}

.page-w-88__highlight {
    color: #ffd700;
    font-weight: bold;
}

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

.page-w-88__floating-button {
    background-color: #ffd700; /* Gold accent */
    color: #1a1a1a;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-width: 120px; /* Ensure buttons are not too small */
    text-align: center;
}

.page-w-88__floating-button:hover {
    background-color: #e0b800;
    transform: translateY(-2px);
}

/* Section common styles */
.page-w-88__section-title {
    font-size: 2em;
    color: #ffd700;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.page-w-88__section-description {
    font-size: 1.05em;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Product Showcase */
.page-w-88__product-showcase {
    background-color: #222;
    padding-bottom: 40px;
}

.page-w-88__product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    justify-content: center;
}

.page-w-88__product-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box; /* Crucial for grid items */
}

.page-w-88__product-card:hover {
    transform: translateY(-5px);
}

.page-w-88__product-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
    width: 100%; /* Ensure images fill card width */
    min-height: 200px; /* Minimum size requirement */
    min-width: 200px;
}

.page-w-88__product-title {
    font-size: 1.4em;
    color: #ffd700;
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.page-w-88__product-text {
    font-size: 0.95em;
    color: #ccc;
}

/* Promotions */
.page-w-88__promotions {
    background-color: #1a1a1a;
    padding-bottom: 40px;
}

.page-w-88__promotion-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    margin-bottom: 25px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

.page-w-88__promotion-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    width: 100%;
    min-height: 200px; /* Minimum size requirement */
    min-width: 200px;
}

.page-w-88__promotion-title {
    font-size: 1.5em;
    color: #ffd700;
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.page-w-88__promotion-text {
    font-size: 1em;
    color: #ccc;
    margin-bottom: 20px;
}

.page-w-88__action-button {
    background-color: #007bff; /* Blue for action */
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-w-88__action-button:hover {
    background-color: #0056b3;
}

/* Providers */
.page-w-88__providers {
    background-color: #222;
    padding-bottom: 40px;
}

.page-w-88__provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Adjusted for smaller logos */
    gap: 20px;
    justify-content: center;
}

.page-w-88__provider-item {
    background-color: #2a2a2a;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px; /* Ensure consistent height for provider items */
}

.page-w-88__provider-logo {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;
    min-height: 100px; /* Minimum size requirement */
    min-width: 100px;
}

.page-w-88__provider-name {
    font-size: 0.9em;
    color: #ccc;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Payments */
.page-w-88__payments {
    background-color: #1a1a1a;
    padding-bottom: 40px;
}

.page-w-88__payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-content: center;
}

.page-w-88__payment-item {
    background-color: #2a2a2a;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px; /* Consistent height */
}

.page-w-88__payment-logo {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;
    min-height: 100px; /* Minimum size requirement */
    min-width: 100px;
}

.page-w-88__payment-name {
    font-size: 0.9em;
    color: #ccc;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* FAQ Section */
.page-w-88__faq-section {
    background-color: #222;
    padding-bottom: 40px;
}

.page-w-88__faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.page-w-88__faq-item {
    background-color: #2a2a2a;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-w-88__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #333;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
}

.page-w-88__faq-question:hover {
    background-color: #444;
}

.page-w-88__faq-question-title {
    font-size: 1.1em;
    color: #ffd700;
    margin: 0;
    flex-grow: 1;
    pointer-events: none; /* Crucial for click handler on parent */
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.page-w-88__faq-toggle {
    font-size: 1.5em;
    color: #ffd700;
    margin-left: 15px;
    transition: transform 0.3s ease;
    pointer-events: none; /* Crucial for click handler on parent */
}

.page-w-88__faq-item.active .page-w-88__faq-toggle {
    transform: rotate(45deg); /* Change + to X visual */
}

.page-w-88__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px; /* Initial padding 0 to animate */
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    color: #ccc;
}

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

.page-w-88__faq-answer p {
    margin: 0;
    padding-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Call to Action */
.page-w-88__call-to-action {
    background-color: #333;
    padding: 50px 20px;
    text-align: center;
}

.page-w-88__main-action-button {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
}

.page-w-88__main-action-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-w-88__main-title {
        font-size: 1.8em;
    }

    .page-w-88__hero-description {
        font-size: 1em;
    }

    .page-w-88__section-title {
        font-size: 1.6em;
        padding-top: 25px;
    }

    .page-w-88__section-description {
        font-size: 0.95em;
        margin-bottom: 25px;
    }

    .page-w-88__product-grid,
    .page-w-88__provider-grid,
    .page-w-88__payment-grid {
        grid-template-columns: 1fr; /* Stack items vertically */
        padding: 0 10px; /* Adjust padding for mobile */
    }

    .page-w-88__product-card,
    .page-w-88__promotion-card,
    .page-w-88__provider-item,
    .page-w-88__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important;
    }
    
    .page-w-88__product-image,
    .page-w-88__promotion-image,
    .page-w-88__provider-logo,
    .page-w-88__payment-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .page-w-88__promotion-card {
        padding: 15px;
    }

    .page-w-88__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px); /* Adjust width for padding */
        left: 20px;
        right: 20px;
        justify-content: space-around;
        gap: 5px;
    }
    .page-w-88__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.9em;
        min-width: unset; /* Remove min-width for flexible sizing */
    }

    .page-w-88__faq-question {
        padding: 12px 15px;
    }

    .page-w-88__faq-question-title {
        font-size: 1em;
    }

    .page-w-88__faq-answer {
        padding: 0 15px;
    }

    .page-w-88__faq-item.active .page-w-88__faq-answer {
        padding: 15px !important;
    }

    .page-w-88__main-action-button {
        font-size: 1em;
        padding: 12px 25px;
    }
}
  