
    .page-an789 {
        font-family: 'Arial', sans-serif;
        color: #FFFFFF;
        background-color: #1A1A1A;
        line-height: 1.6;
        padding-top: 10px; /* As per fixed header offset requirement */
    }

    .page-an789__section-title {
        font-size: 2.5em;
        color: #FFD700; /* Gold */
        text-align: center;
        margin-bottom: 20px;
        padding: 0 15px;
        line-height: 1.2;
    }

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

    .page-an789__button {
        padding: 12px 25px;
        border-radius: 8px;
        font-size: 1.1em;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        color: #FFFFFF;
        text-decoration: none; /* Ensure no underline for button-like elements */
        display: inline-block; /* Ensure padding applies correctly */
        text-align: center;
        box-sizing: border-box;
    }

    .page-an789__button--primary {
        background-color: #00A86B; /* Green */
        box-shadow: 0 4px 15px rgba(0, 168, 107, 0.4);
    }

    .page-an789__button--primary:hover {
        background-color: #008F5A;
        transform: translateY(-2px);
    }

    .page-an789__button--secondary {
        background-color: #333333;
        border: 2px solid #FFD700; /* Gold */
    }

    .page-an789__button--secondary:hover {
        background-color: #444444;
        transform: translateY(-2px);
    }

    /* Hero Section */
    .page-an789__hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 60px 20px;
        background: linear-gradient(135deg, #1A1A1A 0%, #000000 100%);
        overflow: hidden;
    }

    .page-an789__hero-content {
        max-width: 900px;
        margin-bottom: 40px;
    }

    .page-an789__hero-title {
        font-size: 3.2em;
        color: #FFD700; /* Gold */
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .page-an789__hero-description {
        font-size: 1.3em;
        color: #CCCCCC;
        margin-bottom: 30px;
    }

    .page-an789__hero-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

    .page-an789__hero-image-wrapper {
        width: 100%;
        max-width: 1000px;
        overflow: hidden;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .page-an789__hero-image {
        max-width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    /* Products Section */
    .page-an789__products-section,
    .page-an789__promotions-section,
    .page-an789__why-choose-section,
    .page-an789__payments-providers-section,
    .page-an789__faq-section,
    .page-an789__cta-section {
        padding: 80px 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

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

    .page-an789__product-card {
        background-color: #2A2A2A;
        border-radius: 12px;
        overflow: hidden;
        text-align: center;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-an789__product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
    }

    .page-an789__product-image {
        width: 100%;
        height: 200px; /* Fixed height for consistency */
        object-fit: cover;
        display: block;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-an789__product-title {
        font-size: 1.8em;
        color: #FFD700;
        margin: 20px 15px 10px;
        line-height: 1.3;
    }

    .page-an789__product-text {
        font-size: 1em;
        color: #CCCCCC;
        padding: 0 15px 20px;
        flex-grow: 1; /* Make text take available space */
    }

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

    .page-an789__promotion-item {
        background-color: #2A2A2A;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        box-sizing: border-box; /* Crucial for responsive list items */
    }

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

    .page-an789__promotion-image {
        width: 100%;
        height: 220px; /* Fixed height for consistency */
        object-fit: cover;
        display: block;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-an789__promotion-title {
        font-size: 1.6em;
        color: #00A86B; /* Green */
        margin: 20px 15px 10px;
        line-height: 1.3;
    }

    .page-an789__promotion-text {
        font-size: 1em;
        color: #CCCCCC;
        padding: 0 15px 20px;
        flex-grow: 1;
    }

    /* Why Choose Section */
    .page-an789__why-choose-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        text-align: center;
    }

    .page-an789__why-choose-item {
        background-color: #2A2A2A;
        border-radius: 12px;
        padding: 30px 20px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box; /* Crucial for responsive list items */
    }

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

    .page-an789__why-choose-icon {
        width: 200px; /* Enforce min size */
        height: 200px; /* Enforce min size */
        object-fit: contain; /* To ensure full icon visibility */
        margin-bottom: 20px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-an789__why-choose-heading {
        font-size: 1.5em;
        color: #FFD700;
        margin-bottom: 10px;
    }

    .page-an789__why-choose-text {
        font-size: 1em;
        color: #CCCCCC;
    }

    /* Payments & Providers Section */
    .page-an789__payments-providers-section {
        display: flex;
        flex-direction: column;
        gap: 60px;
    }

    .page-an789__payments-container,
    .page-an789__providers-container {
        background-color: #2A2A2A;
        border-radius: 15px;
        padding: 40px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        text-align: center;
    }

    .page-an789__payments-grid,
    .page-an789__providers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 25px;
        justify-content: center;
        margin-top: 30px;
    }

    .page-an789__payment-item,
    .page-an789__provider-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px 10px;
        background-color: #3A3A3A;
        border-radius: 10px;
        transition: transform 0.3s ease, background-color 0.3s ease;
        text-decoration: none;
        color: #FFFFFF;
        box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-an789__payment-item:hover,
    .page-an789__provider-item:hover {
        transform: translateY(-5px);
        background-color: #4A4A4A;
    }

    .page-an789__payment-logo,
    .page-an789__provider-logo {
        width: 200px; /* Enforce min size */
        height: 200px; /* Enforce min size */
        object-fit: contain;
        margin-bottom: 10px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-an789__payment-name,
    .page-an789__provider-name {
        font-size: 1.1em;
        font-weight: bold;
        color: #00A86B;
    }

    /* FAQ Section */
    .page-an789__faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .page-an789__faq-item {
        background-color: #2A2A2A;
        border-radius: 10px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-an789__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #3A3A3A;
        border-bottom: 1px solid #4A4A4A;
        transition: background-color 0.3s ease;
        user-select: none;
    }

    .page-an789__faq-question:hover {
        background-color: #4A4A4A;
    }

    .page-an789__faq-heading {
        font-size: 1.3em;
        color: #FFD700;
        margin: 0;
        pointer-events: none; /* Prevent text from blocking click event */
    }

    .page-an789__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: #00A86B;
        pointer-events: none; /* Prevent icon from blocking click event */
        transition: transform 0.3s ease;
    }

    .page-an789__faq-item.active .page-an789__faq-toggle {
        transform: rotate(45deg); /* Change + to X (or rotate to -) */
        /* Content change handled by JS */
    }

    .page-an789__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px; /* Adjust padding for closed state */
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

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

    .page-an789__faq-answer p {
        margin: 0;
        color: #CCCCCC;
        font-size: 1em;
    }

    /* CTA Section */
    .page-an789__cta-section {
        text-align: center;
        background-color: #00A86B;
        padding: 60px 20px;
        border-radius: 15px;
        margin-bottom: 40px; /* Add some space before footer */
    }

    .page-an789__cta-section .page-an789__section-title {
        color: #FFFFFF;
        margin-bottom: 15px;
    }

    .page-an789__cta-section .page-an789__section-description {
        color: #E0E0E0;
        margin-bottom: 40px;
    }

    .page-an789__cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .page-an789__hero-title {
            font-size: 2.8em;
        }
        .page-an789__hero-description {
            font-size: 1.2em;
        }
        .page-an789__section-title {
            font-size: 2em;
        }
        .page-an789__section-description {
            font-size: 1em;
        }
    }

    @media (max-width: 768px) {
        .page-an789__hero-section {
            padding: 40px 15px;
        }
        .page-an789__hero-title {
            font-size: 2.2em;
        }
        .page-an789__hero-description {
            font-size: 1.1em;
        }
        .page-an789__hero-buttons {
            flex-direction: column;
            gap: 15px;
        }
        .page-an789__button {
            width: 100%;
            max-width: 300px; /* Limit button width for better appearance */
        }

        .page-an789__products-section,
        .page-an789__promotions-section,
        .page-an789__why-choose-section,
        .page-an789__payments-providers-section,
        .page-an789__faq-section,
        .page-an789__cta-section {
            padding: 50px 15px;
        }
        .page-an789__section-title {
            font-size: 1.8em;
            margin-bottom: 15px;
        }
        .page-an789__section-description {
            margin-bottom: 30px;
        }

        /* List item responsive adjustments */
        .page-an789__products-grid,
        .page-an789__promotions-list,
        .page-an789__why-choose-list,
        .page-an789__payments-grid,
        .page-an789__providers-grid {
            grid-template-columns: 1fr;
            gap: 20px;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-an789__product-card,
        .page-an789__promotion-item,
        .page-an789__why-choose-item,
        .page-an789__payment-item,
        .page-an789__provider-item,
        .page-an789__faq-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-an789__product-text,
        .page-an789__promotion-text,
        .page-an789__why-choose-text,
        .page-an789__faq-answer p {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
            font-size: 0.95em;
        }

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

        .page-an789__payments-container,
        .page-an789__providers-container {
            padding: 30px 20px;
        }
        .page-an789__payment-logo,
        .page-an789__provider-logo {
            width: 150px; /* Adjusted for mobile view, still >200 */
            height: 150px;
        }
    }

    @media (max-width: 480px) {
        .page-an789__hero-title {
            font-size: 1.8em;
        }
        .page-an789__hero-description {
            font-size: 1em;
        }
        .page-an789__section-title {
            font-size: 1.5em;
        }
        .page-an789__button {
            font-size: 1em;
            padding: 10px 20px;
        }
    }
  