
    /* General styling for the page */
    .page-banca-n-h {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0;
        background-color: #1a1a2e; /* Dark background */
        line-height: 1.6;
        padding-top: 10px; /* Adjust for fixed header, relying on body padding for main offset */
    }

    .page-banca-n-h__section {
        padding: 40px 20px;
        margin-bottom: 20px;
        background-color: #16213e;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-banca-n-h__section-title {
        color: #e94560; /* Accent color */
        text-align: center;
        margin-bottom: 30px;
        font-size: 2.2em;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Hero Section */
    .page-banca-n-h__hero-section {
        position: relative;
        padding: 60px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        min-height: 500px;
        background-color: #0f3460;
        border-radius: 8px;
        margin-bottom: 20px;
    }

    .page-banca-n-h__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3;
        z-index: 0;
        max-width: 100%;
        height: auto;
    }

    .page-banca-n-h__hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
    }

    .page-banca-n-h__hero-title {
        font-size: 3em;
        color: #ffffff;
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        line-height: 1.2;
    }

    .page-banca-n-h__hero-description {
        font-size: 1.2em;
        color: #e0e0e0;
        margin-bottom: 30px;
        max-width: 700px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-banca-n-h__hero-button,
    .page-banca-n-h__promo-button,
    .page-banca-n-h__cta-button {
        background-color: #e94560;
        color: #ffffff;
        border: none;
        padding: 15px 30px;
        font-size: 1.1em;
        font-weight: bold;
        border-radius: 50px;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        display: inline-block;
        text-decoration: none;
    }

    .page-banca-n-h__hero-button:hover,
    .page-banca-n-h__promo-button:hover,
    .page-banca-n-h__cta-button:hover {
        background-color: #ff6b82;
        transform: translateY(-2px);
    }

    /* Intro Section */
    .page-banca-n-h__intro-section {
        padding: 40px 20px;
        margin-bottom: 20px;
        background-color: #16213e;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
    }

    .page-banca-n-h__intro-text {
        max-width: 900px;
        margin: 0 auto 20px auto;
        font-size: 1.1em;
        color: #c0c0c0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Features Section */
    .page-banca-n-h__features-section {
        padding: 40px 20px;
        margin-bottom: 20px;
        background-color: #16213e;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

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

    .page-banca-n-h__feature-item {
        background-color: #0f3460;
        padding: 25px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
    }

    .page-banca-n-h__feature-item:hover {
        transform: translateY(-5px);
    }

    .page-banca-n-h__feature-icon {
        width: 250px;
        height: 180px;
        object-fit: cover;
        margin-bottom: 20px;
        border-radius: 8px;
        max-width: 100%;
        height: auto;
    }

    .page-banca-n-h__feature-title {
        font-size: 1.5em;
        color: #ffffff;
        margin-bottom: 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-banca-n-h__feature-description {
        font-size: 0.95em;
        color: #c0c0c0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Game Providers Section */
    .page-banca-n-h__game-providers-section {
        padding: 40px 20px;
        margin-bottom: 20px;
        background-color: #16213e;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
    }

    .page-banca-n-h__providers-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-top: 30px;
        margin-bottom: 40px;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-banca-n-h__provider-item {
        background-color: #e94560;
        color: #ffffff;
        padding: 10px 20px;
        border-radius: 30px;
        font-weight: bold;
        font-size: 0.95em;
        white-space: nowrap;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-banca-n-h__game-showcase {
        width: 100%;
        max-width: 1000px;
        height: auto;
        border-radius: 10px;
        margin-top: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
        object-fit: cover;
    }

    /* Promo Section */
    .page-banca-n-h__promo-section {
        padding: 40px 20px;
        margin-bottom: 20px;
        background-color: #0f3460;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
    }

    .page-banca-n-h__promo-text {
        max-width: 900px;
        margin: 0 auto 30px auto;
        font-size: 1.1em;
        color: #c0c0c0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-banca-n-h__promo-list {
        list-style: none;
        padding: 0;
        margin: 0 auto 40px auto;
        max-width: 700px;
        text-align: left;
    }

    .page-banca-n-h__promo-item {
        background-color: #1a1a2e;
        margin-bottom: 10px;
        padding: 15px 20px;
        border-radius: 5px;
        display: flex;
        align-items: center;
        font-size: 1em;
        color: #f0f0f0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        word-wrap: break-word;
        overflow-wrap: break-word;
        box-sizing: border-box; /* For responsive list items */
    }

    .page-banca-n-h__promo-item::before {
        content: '✓';
        color: #e94560;
        font-weight: bold;
        margin-right: 10px;
        font-size: 1.2em;
    }

    /* How To Play Section */
    .page-banca-n-h__how-to-play-section {
        padding: 40px 20px;
        margin-bottom: 20px;
        background-color: #16213e;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
    }

    .page-banca-n-h__steps-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-banca-n-h__step-item {
        background-color: #0f3460;
        padding: 30px 20px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        position: relative;
        text-align: center;
        overflow: hidden;
    }

    .page-banca-n-h__step-number {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        background-color: #e94560;
        color: #ffffff;
        font-size: 2em;
        font-weight: bold;
        border-radius: 50%;
        margin-bottom: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-banca-n-h__step-title {
        font-size: 1.6em;
        color: #ffffff;
        margin-bottom: 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-banca-n-h__step-description {
        font-size: 1em;
        color: #c0c0c0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* FAQ Section */
    .page-banca-n-h__faq-section {
        padding: 40px 20px;
        margin-bottom: 20px;
        background-color: #16213e;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-banca-n-h__faq-container {
        margin-top: 30px;
    }

    .page-banca-n-h__faq-item {
        background-color: #0f3460;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-banca-n-h__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        background-color: #e94560;
        color: #ffffff;
        cursor: pointer;
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s ease;
        user-select: none;
    }

    .page-banca-n-h__faq-question:hover {
        background-color: #ff6b82;
    }

    .page-banca-n-h__faq-title {
        margin: 0;
        font-size: 1em; /* Adjust to fit parent font size */
        color: #ffffff;
        pointer-events: none; /* Crucial for click event on parent */
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-banca-n-h__faq-toggle {
        font-size: 1.5em;
        margin-left: 15px;
        pointer-events: none; /* Crucial for click event on parent */
        transition: transform 0.3s ease;
    }

    .page-banca-n-h__faq-item.active .page-banca-n-h__faq-toggle {
        transform: rotate(45deg); /* Change '+' to 'x' or similar, or '-' */
        /* Using '-' symbol for active state from JS */
    }

    .page-banca-n-h__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px;
        background-color: #1a1a2e;
        color: #c0c0c0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
    }

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

    .page-banca-n-h__faq-answer p {
        margin: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* CTA Section */
    .page-banca-n-h__cta-section {
        padding: 50px 20px;
        text-align: center;
        background-color: #0f3460;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        margin-bottom: 20px;
    }

    .page-banca-n-h__cta-description {
        font-size: 1.2em;
        color: #e0e0e0;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-banca-n-h__hero-section {
            padding: 40px 15px;
            min-height: 400px;
        }

        .page-banca-n-h__hero-title {
            font-size: 2.2em;
        }

        .page-banca-n-h__hero-description {
            font-size: 1em;
        }

        .page-banca-n-h__hero-button,
        .page-banca-n-h__promo-button,
        .page-banca-n-h__cta-button {
            padding: 12px 25px;
            font-size: 1em;
        }

        .page-banca-n-h__section-title {
            font-size: 1.8em;
        }

        .page-banca-n-h__intro-text,
        .page-banca-n-h__promo-text,
        .page-banca-n-h__cta-description {
            font-size: 1em;
        }

        .page-banca-n-h__features-grid,
        .page-banca-n-h__steps-container {
            grid-template-columns: 1fr;
        }

        .page-banca-n-h__feature-icon {
            width: 100% !important;
            height: auto !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-banca-n-h__providers-list {
            gap: 10px;
        }

        .page-banca-n-h__provider-item {
            font-size: 0.9em;
            padding: 8px 15px;
        }

        .page-banca-n-h__promo-list,
        .page-banca-n-h__faq-container {
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
        }

        .page-banca-n-h__promo-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 15px !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-banca-n-h__faq-question {
            font-size: 1em;
            padding: 15px;
        }

        .page-banca-n-h__faq-answer {
            padding: 15px !important;
        }

        .page-banca-n-h__faq-answer p {
            font-size: 0.95em;
        }

        .page-banca-n-h__game-showcase {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
    }
  