
    .page-888p25-com {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0;
    background-color: #1a1a2e;
    line-height: 1.6;
    padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    overflow-x: hidden;
    }

    .page-888p25-com h1,
    .page-888p25-com h2,
    .page-888p25-com h3 {
    color: #e0b400; /* Gold accent for headings */
    text-align: center;
    margin-bottom: 20px;
    }

    .page-888p25-com p {
    color: #f0f0f0;
    }

    .page-888p25-com__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    }

    .page-888p25-com__button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
    text-align: center;
    font-weight: bold;
    }
    .page-888p25-com__button:hover {
    background-color: #0056b3;
    }

    /* Floating Buttons */
    .page-888p25-com__floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
    }
    .page-888p25-com__floating-button {
    padding: 15px 25px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, background-color 0.3s ease;
    }
    .page-888p25-com__floating-button--register {
    background-color: #28a745; /* Green for Register */
    color: #fff;
    }
    .page-888p25-com__floating-button--register:hover {
    background-color: #218838;
    transform: translateY(-3px);
    }
    .page-888p25-com__floating-button--login {
    background-color: #ffc107; /* Yellow for Login */
    color: #333;
    }
    .page-888p25-com__floating-button--login:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
    }

    /* Hero Section */
    .page-888p25-com__hero-section {
    padding: 10px 20px 40px;
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #2a004a 100%);
    margin-bottom: 40px;
    }
    .page-888p25-com__hero-content {
    max-width: 900px;
    margin: 0 auto;
    }
    .page-888p25-com__hero-title {
    font-size: 2.8rem;
    margin-top: 20px;
    line-height: 1.2;
    color: #e0b400;
    }
    .page-888p25-com__hero-description {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 30px;
    }
    .page-888p25-com__hero-image-wrapper {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }
    .page-888p25-com__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    }

    /* Product Display */
    .page-888p25-com__products-section {
    padding: 40px 20px;
    background-color: #2a2a4a;
    margin-bottom: 40px;
    border-radius: 10px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    }
    .page-888p25-com__products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
    }
    .page-888p25-com__product-card {
    background-color: #3a3a5e;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease;
    }
    .page-888p25-com__product-card:hover {
    transform: translateY(-5px);
    }
    .page-888p25-com__product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
    }
    .page-888p25-com__product-title {
    font-size: 1.5rem;
    color: #e0b400;
    margin-bottom: 10px;
    padding: 0 15px;
    }
    .page-888p25-com__product-description {
    font-size: 1rem;
    color: #ccc;
    padding: 0 15px;
    margin-bottom: 20px;
    }
    .page-888p25-com__product-button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    }
    .page-888p25-com__product-button:hover {
    background-color: #0056b3;
    }

    /* Promotions Section */
    .page-888p25-com__promotions-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
    }
    .page-888p25-com__promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    }
    .page-888p25-com__promotion-card {
    background-color: #3a3a5e;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    }
    .page-888p25-com__promotion-card:hover {
    transform: translateY(-5px);
    }
    .page-888p25-com__promotion-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    }
    .page-888p25-com__promotion-content {
    padding: 20px;
    }
    .page-888p25-com__promotion-title {
    font-size: 1.4rem;
    color: #e0b400;
    margin-bottom: 10px;
    text-align: left;
    }
    .page-888p25-com__promotion-description {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 15px;
    text-align: left;
    }

    /* Why Choose Us Section */
    .page-888p25-com__features-section {
    padding: 40px 20px;
    background-color: #2a2a4a;
    margin-bottom: 40px;
    border-radius: 10px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    }
    .page-888p25-com__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
    }
    .page-888p25-com__feature-item {
    background-color: #3a3a5e;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    }
    .page-888p25-com__feature-item:hover {
    transform: translateY(-5px);
    }
    .page-888p25-com__feature-icon {
    max-width: 250px; /* Min size for image */
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    }
    .page-888p25-com__feature-title {
    font-size: 1.3rem;
    color: #e0b400;
    margin-bottom: 10px;
    }
    .page-888p25-com__feature-description {
    color: #ccc;
    font-size: 0.95rem;
    }

    /* FAQ Section */
    .page-888p25-com__faq-section {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto 40px auto;
    background-color: #2a2a4a;
    border-radius: 10px;
    }
    .page-888p25-com__faq-title {
    font-size: 2.2rem;
    color: #e0b400;
    margin-bottom: 30px;
    text-align: center;
    }
    .page-888p25-com__faq-item {
    background-color: #3a3a5e;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    .page-888p25-com__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #4a4a7e;
    color: #f0f0f0;
    font-size: 1.2rem;
    font-weight: bold;
    user-select: none;
    transition: background-color 0.3s ease;
    }
    .page-888p25-com__faq-question:hover {
    background-color: #5a5a8e;
    }
    .page-888p25-com__faq-question-text {
    margin: 0;
    color: #f0f0f0;
    pointer-events: none;
    }
    .page-888p25-com__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #e0b400;
    pointer-events: none;
    }
    .page-888p25-com__faq-item.active .page-888p25-com__faq-toggle {
    transform: rotate(45deg); /* Visually represents an 'X' or closed state */
    }
    .page-888p25-com__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px; /* Initial padding */
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }
    .page-888p25-com__faq-item.active .page-888p25-com__faq-answer {
    max-height: 2000px !important; /* Sufficiently large value */
    padding: 20px 25px !important; /* Active padding */
    opacity: 1;
    }
    .page-888p25-com__faq-answer p {
    margin: 0;
    color: #cccccc;
    font-size: 1rem;
    }

    /* Call to Action */
    .page-888p25-com__cta-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #1a1a2e;
    margin-bottom: 40px;
    }
    .page-888p25-com__cta-title {
    font-size: 2.5rem;
    color: #e0b400;
    margin-bottom: 20px;
    }
    .page-888p25-com__cta-description {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
    .page-888p25-com__hero-title {
        font-size: 2.4rem;
    }
    .page-888p25-com__hero-description {
        font-size: 1.2rem;
    }
    }

    @media (max-width: 768px) {
    .page-888p25-com__hero-title {
        font-size: 2rem;
    }
    .page-888p25-com__hero-description {
        font-size: 1rem;
    }
    .page-888p25-com__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        justify-content: space-around;
        bottom: 15px;
    }
    .page-888p25-com__floating-button {
        flex: 1;
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    .page-888p25-com__products-section,
    .page-888p25-com__promotions-section,
    .page-888p25-com__features-section,
    .page-888p25-com__faq-section {
        padding: 20px 15px;
    }
    .page-888p25-com__products-grid,
    .page-888p25-com__promotions-grid,
    .page-888p25-com__features-grid {
        grid-template-columns: 1fr;
    }
    .page-888p25-com__product-image {
        height: 200px;
    }
    .page-888p25-com__promotion-image {
        height: 180px;
    }
    .page-888p25-com__faq-question {
        padding: 15px 20px;
        font-size: 1.1rem;
    }
    .page-888p25-com__faq-answer {
        padding: 0 20px;
    }
    .page-888p25-com__faq-item.active .page-888p25-com__faq-answer {
        padding: 15px 20px !important;
    }
    .page-888p25-com__feature-icon {
        max-width: 200px;
    }
    .page-888p25-com__cta-title {
        font-size: 2rem;
    }
    .page-888p25-com__cta-description {
        font-size: 1rem;
    }
    /* List item specific mobile styles */
    .page-888p25-com__products-grid > *,
    .page-888p25-com__promotions-grid > *,
    .page-888p25-com__features-grid > * {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }
    .page-888p25-com__products-grid,
    .page-888p25-com__promotions-grid,
    .page-888p25-com__features-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    }

    @media (max-width: 480px) {
    .page-888p25-com__hero-title {
        font-size: 1.8rem;
    }
    .page-888p25-com__floating-button {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    .page-888p25-com__faq-question {
        font-size: 1rem;
    }
    .page-888p25-com__faq-toggle {
        font-size: 1.5rem;
    }
    }
  