.page-ban-ca {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background-color: #FFFFFF; /* Default body background */
}

.page-ban-ca__container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 20px 16px;
    box-sizing: border-box;
}

/* HERO Section */
.page-ban-ca__hero-section {
    padding-top: 10px; /* Rely on body for header offset, use small top padding */
    padding-bottom: 60px;
    background-color: #f5f5f5; /* Light background for hero */
    color: #333333;
}

.page-ban-ca__hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-ban-ca__hero-content {
    flex: 1 1 50%;
    min-width: 300px;
}

.page-ban-ca__hero-title {
    font-size: 2.8em;
    font-weight: bold;
    color: #26A9E0;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-ban-ca__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.page-ban-ca__hero-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.page-ban-ca__hero-image {
    flex: 1 1 40%;
    min-width: 300px;
    text-align: center;
}

.page-ban-ca__hero-main-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    display: block;
    margin: 0 auto;
}

/* General Section Titles & Descriptions */
.page-ban-ca__section-title {
    font-size: 2.2em;
    font-weight: bold;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 20px;
}

.page-ban-ca__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Intro Section (Module 1) */
.page-ban-ca__intro-section {
    padding: 60px 0;
    background-color: #26A9E0; /* Brand primary color background */
    color: #FFFFFF; /* White text for dark background */
}

.page-ban-ca__intro-section .page-ban-ca__section-title,
.page-ban-ca__intro-section .page-ban-ca__section-description {
    color: #FFFFFF;
}

.page-ban-ca__icon-box-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-ban-ca__icon-box {
    flex: 1 1 30%;
    min-width: 280px;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.page-ban-ca__icon-box-media {
    width: 240px;
    height: 240px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-ban-ca__icon-box-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.page-ban-ca__icon-box-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.page-ban-ca__icon-box-text {
    font-size: 1em;
    color: #f0f0f0;
}

/* Game Showcase Section */
.page-ban-ca__game-showcase-section {
    padding: 60px 0;
    background-color: #FFFFFF;
    color: #333333;
}

.page-ban-ca__game-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-ban-ca__game-card {
    background-color: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-ban-ca__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-ban-ca__game-card-img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-ban-ca__game-card-content {
    padding: 20px;
}

.page-ban-ca__game-card-title {
    font-size: 1.4em;
    font-weight: bold;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-ban-ca__game-card-text {
    font-size: 0.95em;
    color: #555555;
    margin-bottom: 20px;
}

/* Guide Section */
.page-ban-ca__guide-section {
    padding: 60px 0;
    background-color: #26A9E0;
    color: #FFFFFF;
}

.page-ban-ca__guide-section .page-ban-ca__section-title {
    color: #FFFFFF;
}

.page-ban-ca__guide-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-ban-ca__guide-steps {
    flex: 1 1 50%;
    min-width: 300px;
}

.page-ban-ca__guide-step {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 5px solid #EA7C07;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-ban-ca__guide-step-title {
    font-size: 1.3em;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.page-ban-ca__guide-step p {
    font-size: 1em;
    color: #f0f0f0;
}

.page-ban-ca__guide-image {
    flex: 1 1 40%;
    min-width: 300px;
    text-align: center;
}

.page-ban-ca__guide-main-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    display: block;
    margin: 0 auto;
}

/* Promo Section */
.page-ban-ca__promo-section {
    padding: 60px 0;
    background-color: #FFFFFF;
    color: #333333;
}

.page-ban-ca__promo-card {
    display: flex;
    flex-wrap: wrap;
    background-color: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.page-ban-ca__promo-card-img {
    flex: 1 1 40%;
    min-width: 250px;
    height: auto;
    object-fit: cover;
    display: block;
}

.page-ban-ca__promo-card-content {
    flex: 1 1 50%;
    min-width: 300px;
    padding: 30px;
    box-sizing: border-box;
}

.page-ban-ca__promo-card-title {
    font-size: 1.8em;
    font-weight: bold;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-ban-ca__promo-card-text {
    font-size: 1.05em;
    color: #555555;
    margin-bottom: 25px;
}

/* Trust Section */
.page-ban-ca__trust-section {
    padding: 60px 0;
    background-color: #333333; /* Dark background */
    color: #FFFFFF;
}

.page-ban-ca__trust-section .page-ban-ca__section-title {
    color: #FFFFFF;
}

.page-ban-ca__trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

.page-ban-ca__trust-item {
    flex: 1 1 30%;
    min-width: 280px;
    text-align: center;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-ban-ca__trust-item-title {
    font-size: 1.4em;
    font-weight: bold;
    color: #EA7C07;
    margin-bottom: 10px;
}

.page-ban-ca__trust-item p {
    font-size: 0.95em;
    color: #f0f0f0;
}

.page-ban-ca__trust-image {
    text-align: center;
}

.page-ban-ca__trust-main-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    display: block;
    margin: 0 auto;
}

/* FAQ Section */
.page-ban-ca__faq-section {
    padding: 60px 0;
    background-color: #FFFFFF;
    color: #333333;
}

.page-ban-ca__faq-list {
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-ban-ca__faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f9f9f9;
    overflow: hidden;
}

.page-ban-ca__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    font-size: 1.1em;
    font-weight: bold;
    color: #26A9E0;
    cursor: pointer;
    background-color: #eaf6fc;
    list-style: none; /* Remove default marker */
}

.page-ban-ca__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-ban-ca__faq-qtext {
    flex-grow: 1;
}

.page-ban-ca__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #EA7C07;
}

.page-ban-ca__faq-answer {
    padding: 0 20px 20px;
    font-size: 1em;
    color: #555555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.page-ban-ca__faq-item[open] .page-ban-ca__faq-answer {
    max-height: 500px; /* Adjust as needed for content */
}

/* CTA Section */
.page-ban-ca__cta-section {
    padding: 60px 0;
    background-color: #000000; /* Dark background */
    color: #FFFFFF;
    text-align: center;
}

.page-ban-ca__cta-section .page-ban-ca__section-title,
.page-ban-ca__cta-section .page-ban-ca__section-description {
    color: #FFFFFF;
}

/* Buttons */
.page-ban-ca__btn-primary,
.page-ban-ca__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    font-size: 1.05em;
    box-sizing: border-box;
}

.page-ban-ca__btn-primary {
    background-color: #26A9E0;
    color: #FFFFFF;
    border: 2px solid #26A9E0;
}

.page-ban-ca__btn-primary:hover {
    background-color: #1e87b7;
    border-color: #1e87b7;
}

.page-ban-ca__btn-secondary {
    background-color: #FFFFFF;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-ban-ca__btn-secondary:hover {
    background-color: #eaf6fc;
    color: #1e87b7;
    border-color: #1e87b7;
}

.page-ban-ca__btn-small {
    padding: 8px 18px;
    font-size: 0.9em;
}

.page-ban-ca__btn-large {
    padding: 15px 35px;
    font-size: 1.2em;
}

.page-ban-ca__btn-center {
    display: block;
    margin: 0 auto;
    width: fit-content;
}

/* Images responsiveness for content sections */
.page-ban-ca img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-ban-ca__hero-title {
        font-size: 2.5em;
    }
    .page-ban-ca__section-title {
        font-size: 2em;
    }
    .page-ban-ca__icon-box-media {
        width: 200px;
        height: 200px;
    }
    .page-ban-ca__intro-section .page-ban-ca__icon-box {
        flex: 1 1 45%;
    }
    .page-ban-ca__game-card-img {
        
    }
    .page-ban-ca__promo-card-content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .page-ban-ca {
        font-size: 16px;
        line-height: 1.6;
    }

    /* HERO Section */
    .page-ban-ca__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
    }
    .page-ban-ca__hero-container {
        flex-direction: column;
        gap: 30px;
        padding: 30px 15px;
    }
    .page-ban-ca__hero-content,
    .page-ban-ca__hero-image {
        flex: 1 1 100%;
        min-width: unset;
    }
    .page-ban-ca__hero-title {
        font-size: 2em !important;
        text-align: center;
    }
    .page-ban-ca__hero-description {
        font-size: 1em;
        text-align: center;
        margin-bottom: 25px;
    }
    .page-ban-ca__hero-cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .page-ban-ca__btn-primary,
    .page-ban-ca__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Intro Section (Module 1) */
    .page-ban-ca__intro-section,
    .page-ban-ca__game-showcase-section,
    .page-ban-ca__guide-section,
    .page-ban-ca__promo-section,
    .page-ban-ca__trust-section,
    .page-ban-ca__faq-section,
    .page-ban-ca__cta-section {
        padding: 40px 0;
    }
    .page-ban-ca__container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-ban-ca__section-title {
        font-size: 1.8em !important;
    }
    .page-ban-ca__section-description {
        font-size: 1em;
    }
    .page-ban-ca__icon-box-grid {
        flex-direction: column;
        gap: 20px;
    }
    .page-ban-ca__icon-box {
        flex: 1 1 100%;
        min-width: unset;
    }
    .page-ban-ca__icon-box-media {
        width: 150px !important;
        height: 150px !important;
        margin-bottom: 15px;
    }

    /* Game Showcase Section */
    .page-ban-ca__game-card-grid {
        grid-template-columns: 1fr;
    }
    .page-ban-ca__game-card-img {
        
    }

    /* Guide Section */
    .page-ban-ca__guide-content {
        flex-direction: column;
        gap: 30px;
    }
    .page-ban-ca__guide-steps,
    .page-ban-ca__guide-image {
        flex: 1 1 100%;
        min-width: unset;
    }
    .page-ban-ca__guide-step {
        padding: 15px;
        margin-bottom: 15px;
    }
    .page-ban-ca__guide-step-title {
        font-size: 1.2em;
    }

    /* Promo Section */
    .page-ban-ca__promo-card {
        flex-direction: column;
    }
    .page-ban-ca__promo-card-img,
    .page-ban-ca__promo-card-content {
        flex: 1 1 100%;
        min-width: unset;
    }
    .page-ban-ca__promo-card-title {
        font-size: 1.5em;
    }

    /* Trust Section */
    .page-ban-ca__trust-points {
        flex-direction: column;
        gap: 20px;
    }
    .page-ban-ca__trust-item {
        flex: 1 1 100%;
        min-width: unset;
    }

    /* FAQ Section */
    .page-ban-ca__faq-question {
        font-size: 1em;
        padding: 15px;
    }
    .page-ban-ca__faq-toggle {
        font-size: 1.2em;
    }
    .page-ban-ca__faq-answer {
        padding: 0 15px 15px;
    }

    /* All Images */
    .page-ban-ca img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    /* Exception for circular images to maintain aspect ratio */
    .page-ban-ca__icon-box-media img {
        height: 100% !important; /* Keep height 100% of parent for object-fit */
        width: 100% !important;
    }
}