:root {
    --page-ban-ca-primary: #11A84E;
    --page-ban-ca-secondary: #22C768;
    --page-ban-ca-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --page-ban-ca-card-bg: #11271B;
    --page-ban-ca-background: #08160F;
    --page-ban-ca-text-main: #F2FFF6;
    --page-ban-ca-text-secondary: #A7D9B8;
    --page-ban-ca-border: #2E7A4E;
    --page-ban-ca-glow: #57E38D;
    --page-ban-ca-gold: #F2C14E;
    --page-ban-ca-divider: #1E3A2A;
    --page-ban-ca-deep-green: #0A4B2C;
}

.page-ban-ca {
    background-color: var(--page-ban-ca-background);
    color: var(--page-ban-ca-text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* General Container */
.page-ban-ca__container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 40px 16px;
    box-sizing: border-box;
}

/* Section Titles and Descriptions */
.page-ban-ca__section-title {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--page-ban-ca-text-main);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-ban-ca__section-description {
    font-size: 1.1em;
    color: var(--page-ban-ca-text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

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

/* Buttons Global */
.page-ban-ca__cta-button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 100%; /* For responsive buttons */
    box-sizing: border-box; /* For responsive buttons */
    white-space: normal; /* For responsive buttons */
    word-wrap: break-word; /* For responsive buttons */
}

.page-ban-ca__cta-button--primary {
    background: var(--page-ban-ca-button-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-ban-ca__cta-button--primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-ban-ca__cta-button--secondary {
    background: transparent;
    color: var(--page-ban-ca-primary);
    border: 2px solid var(--page-ban-ca-primary);
}

.page-ban-ca__cta-button--secondary:hover {
    background: var(--page-ban-ca-primary);
    color: #ffffff;
}

/* HERO Section */
.page-ban-ca__hero-section {
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    background-color: var(--page-ban-ca-background);
}

.page-ban-ca__hero-container {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 0 16px;
}

.page-ban-ca__hero-content {
    flex: 1 1 45%;
    min-width: 300px;
    text-align: left;
}

.page-ban-ca__hero-title {
    font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive H1 font size */
    font-weight: 800;
    color: var(--page-ban-ca-text-main);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-ban-ca__hero-description {
    font-size: 1.2em;
    color: var(--page-ban-ca-text-secondary);
    margin-bottom: 30px;
    max-width: 600px;
}

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

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

.page-ban-ca__hero-side-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Intro Section (Module 1) */
.page-ban-ca__intro-section {
    padding: 60px 0;
    background-color: var(--page-ban-ca-background);
}

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

.page-ban-ca__icon-box {
    background-color: var(--page-ban-ca-card-bg);
    border: 1px solid var(--page-ban-ca-border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-ban-ca__icon-box:hover {
    transform: translateY(-5px);
}

.page-ban-ca__icon-box-media {
    width: 200px; /* Fixed width for circular image */
    height: 200px; /* Fixed height for circular image */
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--page-ban-ca-primary);
    box-shadow: 0 0 0 5px rgba(17, 168, 78, 0.3);
}

.page-ban-ca__icon-box-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%; /* Ensure image is also circular */
    display: block;
}

.page-ban-ca__icon-box-title {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--page-ban-ca-text-main);
    margin-bottom: 15px;
}

.page-ban-ca__icon-box-text {
    color: var(--page-ban-ca-text-secondary);
    font-size: 1em;
}

/* Features Section */
.page-ban-ca__features-section {
    padding: 60px 0;
    background-color: var(--page-ban-ca-deep-green); /* Darker background */
}

.page-ban-ca__dark-section {
    background-color: var(--page-ban-ca-deep-green);
    color: var(--page-ban-ca-text-main);
    padding: 40px 16px; /* Ensure padding for dark sections */
    border-radius: 12px;
}

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

.page-ban-ca__feature-item {
    background-color: var(--page-ban-ca-card-bg);
    border: 1px solid var(--page-ban-ca-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-ban-ca__feature-item:hover {
    transform: translateY(-5px);
}

.page-ban-ca__feature-image {
    width: 100%;
    height: 250px; /* Fixed height for feature images */
    object-fit: cover;
    border-bottom: 1px solid var(--page-ban-ca-divider);
}

.page-ban-ca__feature-title {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--page-ban-ca-text-main);
    padding: 20px 20px 10px;
}

.page-ban-ca__feature-text {
    color: var(--page-ban-ca-text-secondary);
    font-size: 0.95em;
    padding: 0 20px 20px;
}

/* Guide Section */
.page-ban-ca__guide-section {
    padding: 60px 0;
    background-color: var(--page-ban-ca-background);
}

.page-ban-ca__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-ban-ca__guide-step {
    background-color: var(--page-ban-ca-card-bg);
    border: 1px solid var(--page-ban-ca-border);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-ban-ca__guide-step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--page-ban-ca-button-gradient);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: 700;
    border: 3px solid var(--page-ban-ca-background);
}

.page-ban-ca__guide-step-title {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--page-ban-ca-text-main);
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: center;
}

.page-ban-ca__guide-step-text {
    color: var(--page-ban-ca-text-secondary);
    font-size: 0.95em;
    text-align: center;
}

.page-ban-ca__cta-block {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background-color: var(--page-ban-ca-card-bg);
    border-radius: 12px;
    border: 1px solid var(--page-ban-ca-border);
}

.page-ban-ca__cta-text {
    font-size: 1.2em;
    color: var(--page-ban-ca-text-main);
    margin-bottom: 25px;
}

/* Promo Section */
.page-ban-ca__promo-section {
    padding: 60px 0;
    background-color: var(--page-ban-ca-deep-green); /* Darker background */
}

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

.page-ban-ca__promo-card {
    background-color: var(--page-ban-ca-card-bg);
    border: 1px solid var(--page-ban-ca-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-ban-ca__promo-card:hover {
    transform: translateY(-5px);
}

.page-ban-ca__promo-image {
    width: 100%;
    height: 200px; /* Fixed height for promo images */
    object-fit: cover;
    border-bottom: 1px solid var(--page-ban-ca-divider);
}

.page-ban-ca__promo-title {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--page-ban-ca-text-main);
    padding: 20px 20px 10px;
}

.page-ban-ca__promo-text {
    color: var(--page-ban-ca-text-secondary);
    font-size: 0.95em;
    padding: 0 20px 15px;
}

.page-ban-ca__promo-link {
    display: block;
    color: var(--page-ban-ca-gold);
    text-decoration: none;
    font-weight: 600;
    padding: 0 20px 20px;
    text-align: right;
    transition: color 0.3s ease;
}

.page-ban-ca__promo-link:hover {
    color: var(--page-ban-ca-secondary);
}

/* FAQ Section */
.page-ban-ca__faq-section {
    padding: 60px 0;
    background-color: var(--page-ban-ca-background);
}

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

.page-ban-ca__faq-item {
    background-color: var(--page-ban-ca-card-bg);
    border: 1px solid var(--page-ban-ca-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-ban-ca__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--page-ban-ca-text-main);
    cursor: pointer;
    background-color: var(--page-ban-ca-card-bg);
    border-bottom: 1px solid var(--page-ban-ca-divider);
    list-style: none; /* For <details> summary */
}

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

.page-ban-ca__faq-item[open] .page-ban-ca__faq-question {
    border-bottom: 1px solid var(--page-ban-ca-divider);
}

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

.page-ban-ca__faq-toggle {
    font-size: 1.5em;
    font-weight: 700;
    margin-left: 15px;
    color: var(--page-ban-ca-primary);
    transition: transform 0.3s ease;
}

.page-ban-ca__faq-item[open] .page-ban-ca__faq-toggle {
    transform: rotate(45deg); /* Change to 'x' or rotate '+' */
}

.page-ban-ca__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    color: var(--page-ban-ca-text-secondary);
    line-height: 1.6;
}

/* Final CTA Section */
.page-ban-ca__cta-final-section {
    padding: 80px 0;
    background-color: var(--page-ban-ca-deep-green);
    text-align: center;
}

.page-ban-ca__cta-button--large {
    padding: 18px 40px;
    font-size: 1.3em;
    margin-top: 30px;
}

/* --- Responsive Styles --- */

/* Tablet and Mobile (max-width: 1024px) */
@media (max-width: 1024px) {
    .page-ban-ca__hero-container {
        flex-direction: column;
        text-align: center;
    }

    .page-ban-ca__hero-content {
        order: 2; /* Content below image */
        text-align: center;
    }

    .page-ban-ca__hero-image {
        order: 1; /* Image above content */
        margin-bottom: 30px;
    }

    .page-ban-ca__hero-cta-buttons {
        justify-content: center;
    }

    .page-ban-ca__section-title {
        font-size: 2em;
    }

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

    .page-ban-ca__icon-box-media {
        width: 180px;
        height: 180px;
    }
    .page-ban-ca__feature-image,
    .page-ban-ca__promo-image {
        height: 200px; /* Adjust height for tablet */
    }
}


/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    /* HERO Section */
    .page-ban-ca__hero-section {
        padding-top: 10px !important; /* Small top padding, body handles header offset */
        padding-bottom: 40px !important;
    }
    .page-ban-ca__hero-container {
        padding: 0 15px !important; /* Add side padding for mobile */
        gap: 20px !important;
    }
    .page-ban-ca__hero-title {
        font-size: clamp(1.8em, 8vw, 2.5em) !important; /* Smaller H1 for mobile */
        margin-bottom: 15px !important;
    }
    .page-ban-ca__hero-description {
        font-size: 1em !important;
        margin-bottom: 25px !important;
    }
    .page-ban-ca__hero-cta-buttons {
        flex-direction: column !important; /* Stack buttons vertically */
        gap: 15px !important;
    }
    .page-ban-ca__cta-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px !important;
        font-size: 1em !important;
    }
    .page-ban-ca__hero-side-image {
        border-radius: 8px !important;
    }

    /* Intro Section (Module 1) */
    .page-ban-ca__intro-section {
        padding: 40px 0 !important;
    }
    .page-ban-ca__intro-grid {
        grid-template-columns: 1fr !important; /* Single column */
        gap: 20px !important;
    }
    .page-ban-ca__icon-box {
        padding: 25px !important;
    }
    .page-ban-ca__icon-box-media {
        width: 150px !important; /* Maintain circular, smaller size */
        height: 150px !important;
        margin-bottom: 15px !important;
    }
    .page-ban-ca__icon-box-title {
        font-size: 1.3em !important;
    }
    .page-ban-ca__icon-box-text {
        font-size: 0.9em !important;
    }

    /* Features Section */
    .page-ban-ca__features-section {
        padding: 40px 0 !important;
    }
    .page-ban-ca__dark-section {
        padding: 30px 15px !important;
    }
    .page-ban-ca__features-grid {
        grid-template-columns: 1fr !important; /* Single column */
        gap: 20px !important;
    }
    .page-ban-ca__feature-image {
        height: 180px !important; /* Smaller fixed height for mobile */
    }
    .page-ban-ca__feature-title {
        font-size: 1.2em !important;
        padding: 15px 15px 8px !important;
    }
    .page-ban-ca__feature-text {
        font-size: 0.85em !important;
        padding: 0 15px 15px !important;
    }

    /* Guide Section */
    .page-ban-ca__guide-section {
        padding: 40px 0 !important;
    }
    .page-ban-ca__guide-steps {
        grid-template-columns: 1fr !important; /* Single column */
        gap: 25px !important;
    }
    .page-ban-ca__guide-step {
        padding: 25px !important;
    }
    .page-ban-ca__guide-step-number {
        top: -10px !important; /* Adjust position */
        width: 35px !important;
        height: 35px !important;
        font-size: 1.3em !important;
    }
    .page-ban-ca__guide-step-title {
        font-size: 1.1em !important;
        margin-top: 15px !important;
    }
    .page-ban-ca__guide-step-text {
        font-size: 0.9em !important;
    }
    .page-ban-ca__cta-block {
        margin-top: 40px !important;
        padding: 25px !important;
    }
    .page-ban-ca__cta-text {
        font-size: 1.1em !important;
        margin-bottom: 20px !important;
    }

    /* Promo Section */
    .page-ban-ca__promo-section {
        padding: 40px 0 !important;
    }
    .page-ban-ca__promo-grid {
        grid-template-columns: 1fr !important; /* Single column */
        gap: 20px !important;
    }
    .page-ban-ca__promo-image {
        height: 160px !important; /* Smaller fixed height for mobile */
    }
    .page-ban-ca__promo-title {
        font-size: 1.2em !important;
        padding: 15px 15px 8px !important;
    }
    .page-ban-ca__promo-text {
        font-size: 0.85em !important;
        padding: 0 15px 15px !important;
    }
    .page-ban-ca__promo-link {
        padding: 0 15px 15px !important;
    }

    /* FAQ Section */
    .page-ban-ca__faq-section {
        padding: 40px 0 !important;
    }
    .page-ban-ca__faq-list {
        margin-top: 30px !important;
    }
    .page-ban-ca__faq-item {
        margin-bottom: 10px !important;
    }
    .page-ban-ca__faq-question {
        padding: 15px 20px !important;
        font-size: 1.1em !important;
    }
    .page-ban-ca__faq-toggle {
        font-size: 1.3em !important;
    }
    .page-ban-ca__faq-answer {
        padding: 0 20px 15px !important;
        font-size: 0.9em !important;
    }

    /* Final CTA Section */
    .page-ban-ca__cta-final-section {
        padding: 50px 0 !important;
    }
    .page-ban-ca__cta-button--large {
        padding: 15px 30px !important;
        font-size: 1.1em !important;
        margin-top: 25px !important;
    }

    /* General responsive for all sections and images */
    .page-ban-ca__container,
    .page-ban-ca__section,
    .page-ban-ca__card,
    .page-ban-ca__box {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .page-ban-ca img:not(.page-ban-ca__icon-box-media img) { /* Exclude circular images from height:auto */
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-ban-ca__icon-box-media img { /* Specific for circular images */
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
}