
    /* CSS for page-8kbe */
.page-8kbe {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #1a1a2e; /* Dark background */
    line-height: 1.6;
    padding-bottom: 80px; /* Space for floating buttons */
}

.page-8kbe__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 20px 40px; /* 10px top padding for hero, assuming body has offset */
    overflow: hidden;
    background-color: #16213e;
}

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

.page-8kbe__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Make image subtle background */
    max-width: 100%; /* Responsive image */
    box-sizing: border-box;
}

.page-8kbe__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
    border-radius: 10px;
}

.page-8kbe__hero-title {
    font-size: 2.8em;
    color: #e94560; /* Accent color */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    word-wrap: break-word; /* Ensure text wraps */
    overflow-wrap: break-word;
}

.page-8kbe__hero-description {
    font-size: 1.2em;
    color: #f0f0f0;
    margin-bottom: 30px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.page-8kbe__hero-cta {
    display: inline-block;
    background-color: #0f3460; /* Another accent color */
    color: #f0f0f0;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-8kbe__hero-cta:hover {
    background-color: #1a569f;
    transform: translateY(-2px);
}

.page-8kbe__section-title {
    font-size: 2.2em;
    color: #e94560;
    text-align: center;
    margin: 60px 20px 40px;
    padding-bottom: 10px;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.page-8kbe__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #0f3460;
    border-radius: 2px;
}

.page-8kbe__about-section,
.page-8kbe__promotions-section,
.page-8kbe__news-section,
.page-8kbe__partners-section,
.page-8kbe__faq-section {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-8kbe__about-content p {
    font-size: 1.1em;
    margin-bottom: 15px;
    text-align: justify;
    color: #ccc;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.page-8kbe__products-section {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.page-8kbe__product-item,
.page-8kbe__promotion-item,
.page-8kbe__news-item {
    background-color: #2a2a4a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    box-sizing: border-box; /* Crucial for responsiveness */
}

.page-8kbe__product-item:hover,
.page-8kbe__promotion-item:hover,
.page-8kbe__news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.page-8kbe__product-image,
.page-8kbe__promotion-image,
.page-8kbe__news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    max-width: 100%; /* Responsive image */
    box-sizing: border-box;
}

.page-8kbe__product-item h3,
.page-8kbe__promotion-item h3,
.page-8kbe__news-item h3 {
    font-size: 1.4em;
    color: #e94560;
    padding: 15px 20px 10px;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.page-8kbe__product-item p,
.page-8kbe__promotion-item p,
.page-8kbe__news-item p {
    font-size: 1em;
    color: #ccc;
    padding: 0 20px 20px;
    margin: 0;
    flex-grow: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.page-8kbe__news-date {
    font-size: 0.9em;
    color: #a0a0a0;
    padding: 0 20px 5px;
}

.page-8kbe__news-summary {
    padding-bottom: 15px !important;
}

.page-8kbe__partners-section {
    text-align: center;
}

.page-8kbe__partner-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.page-8kbe__partner-category {
    background-color: #2a2a4a;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-8kbe__partner-subtitle {
    font-size: 1.8em;
    color: #0f3460;
    margin-bottom: 25px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.page-8kbe__partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.page-8kbe__partner-logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #f0f0f0;
    transition: transform 0.2s ease;
    min-width: 120px; /* Ensure logos have enough space */
    box-sizing: border-box;
}

.page-8kbe__partner-logo-link:hover {
    transform: translateY(-5px);
    color: #e94560;
}

.page-8kbe__partner-logo {
    width: 100px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 8px;
    background-color: #333;
    padding: 5px;
    border-radius: 5px;
    max-width: 100%; /* Responsive image */
    box-sizing: border-box;
}

.page-8kbe__partner-name {
    font-size: 0.9em;
    font-weight: bold;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* FAQ Section Styles */
.page-8kbe__faq-list {
    margin-top: 30px;
}

.page-8kbe__faq-item {
    background-color: #2a2a4a;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    box-sizing: border-box; /* For list item responsiveness */
}

.page-8kbe__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background-color: #0f3460;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
}

.page-8kbe__faq-question:hover {
    background-color: #1a569f;
}

.page-8kbe__faq-title {
    margin: 0;
    font-size: 1.2em;
    color: #f0f0f0;
    pointer-events: none; /* Crucial: Prevents text from blocking click event */
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex-grow: 1; /* Allow title to take available space */
}

.page-8kbe__faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: #ffcc00;
    margin-left: 15px;
    pointer-events: none; /* Crucial: Prevents toggle icon from blocking click event */
    transition: transform 0.3s ease;
}

.page-8kbe__faq-item.active .page-8kbe__faq-toggle {
    transform: rotate(45deg); /* Change '+' to 'x' visually */
}

.page-8kbe__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px; /* Initial padding */
    color: #ccc;
    background-color: #16213e;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

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

.page-8kbe__faq-answer p {
    margin: 0;
    font-size: 1em;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

.page-8kbe__floating-button {
    background-color: #ffcc00; /* Bright yellow for visibility */
    color: #333;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    text-align: center;
    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 button size */
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .page-8kbe__hero-title {
        font-size: 2.5em;
    }
    .page-8kbe__section-title {
        font-size: 2em;
    }
    .page-8kbe__product-grid,
    .page-8kbe__promotion-grid,
    .page-8kbe__news-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-8kbe {
        padding-bottom: 100px; /* More space for horizontal floating buttons */
    }
    .page-8kbe__hero-section {
        padding: 10px 15px 30px;
    }
    .page-8kbe__hero-content {
        padding: 30px 15px;
    }
    .page-8kbe__hero-title {
        font-size: 2em;
    }
    .page-8kbe__hero-description {
        font-size: 1em;
    }
    .page-8kbe__hero-cta {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-8kbe__section-title {
        font-size: 1.8em;
        margin: 40px 15px 30px;
    }
    .page-8kbe__about-content p {
        font-size: 0.95em;
    }
    .page-8kbe__product-grid,
    .page-8kbe__promotion-grid,
    .page-8kbe__news-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
    }
    .page-8kbe__product-item,
    .page-8kbe__promotion-item,
    .page-8kbe__news-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .page-8kbe__product-image,
    .page-8kbe__promotion-image,
    .page-8kbe__news-image {
        max-width: 100% !important;
        height: auto !important; /* Ensure images scale */
        box-sizing: border-box !important;
    }
    .page-8kbe__product-item h3,
    .page-8kbe__promotion-item h3,
    .page-8kbe__news-item h3 {
        font-size: 1.2em;
        padding: 12px 15px 8px;
    }
    .page-8kbe__product-item p,
    .page-8kbe__promotion-item p,
    .page-8kbe__news-item p {
        font-size: 0.9em;
        padding: 0 15px 15px;
    }

    .page-8kbe__partner-category {
        padding: 20px 15px;
    }
    .page-8kbe__partner-subtitle {
        font-size: 1.5em;
    }
    .page-8kbe__partner-logos {
        gap: 15px;
    }
    .page-8kbe__partner-logo {
        width: 80px;
        height: 60px;
    }
    .page-8kbe__partner-logo-link {
        min-width: unset;
        width: calc(33% - 10px); /* 3 logos per row */
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .page-8kbe__partner-name {
        font-size: 0.8em;
    }

    .page-8kbe__faq-question {
        padding: 15px 20px;
    }
    .page-8kbe__faq-title {
        font-size: 1.1em;
    }
    .page-8kbe__faq-answer {
        padding: 0 20px;
    }
    .page-8kbe__faq-item.active .page-8kbe__faq-answer {
        padding: 15px 20px !important;
    }
    .page-8kbe__faq-answer p {
        font-size: 0.95em;
    }

    .page-8kbe__floating-buttons {
        flex-direction: row; /* Horizontal on mobile */
        width: calc(100% - 40px);
        bottom: 15px;
        left: 20px;
        right: 20px;
        justify-content: space-around;
        gap: 15px;
    }
    .page-8kbe__floating-button {
        flex: 1; /* Distribute space evenly */
        padding: 10px 15px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-8kbe__hero-title {
        font-size: 1.8em;
    }
    .page-8kbe__section-title {
        font-size: 1.6em;
    }
    .page-8kbe__partner-logo-link {
        width: calc(50% - 10px); /* 2 logos per row on smaller mobiles */
    }
    .page-8kbe__partner-logo {
        width: 70px;
        height: 50px;
    }
    .page-8kbe__partner-name {
        font-size: 0.75em;
    }
}
  