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

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

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

.page-bnc__section {
    padding: 60px 0;
    text-align: center;
}

.page-bnc__section-title {
    font-size: 3em;
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-bnc__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.page-bnc__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--text-secondary-color);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-bnc__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    overflow: hidden;
    background-color: var(--deep-green-color);
}

.page-bnc__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-bnc__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-bnc__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--border-color);
}

.page-bnc__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-bnc__main-title {
    font-size: clamp(2.2em, 5vw, 3.8em);
    font-weight: 900;
    color: var(--gold-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(242, 193, 78, 0.7);
}

.page-bnc__description {
    font-size: clamp(1em, 2vw, 1.3em);
    color: var(--text-secondary-color);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-bnc__cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-bnc__cta-button:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-bnc__cta-button--secondary {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.page-bnc__cta-button--secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(17, 168, 78, 0.3);
}

/* Dark Background Section */
.page-bnc__dark-bg {
    background-color: var(--card-bg-color);
    color: var(--text-main-color);
}

.page-bnc__dark-bg .page-bnc__section-title {
    color: var(--gold-color);
}

.page-bnc__dark-bg .page-bnc__text-block {
    color: var(--text-secondary-color);
}

/* Grid Layouts */
.page-bnc__grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.page-bnc__grid--3-cols {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-bnc__grid--2-cols {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.page-bnc__card, .page-bnc__promo-card {
    background-color: var(--card-bg-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-bnc__card:hover, .page-bnc__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-bnc__card img, .page-bnc__promo-card img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--divider-color);
}

.page-bnc__card-title {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-bnc__card-text {
    font-size: 1em;
    color: var(--text-secondary-color);
    flex-grow: 1;
}

.page-bnc__button-group {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-bnc__ordered-list, .page-bnc__unordered-list {
    list-style-position: inside;
    text-align: left;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: var(--text-main-color);
    padding-left: 20px;
}

.page-bnc__ordered-list li, .page-bnc__unordered-list li {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: var(--text-secondary-color);
}

.page-bnc__ordered-list li strong, .page-bnc__unordered-list li strong {
    color: var(--text-main-color);
}

/* FAQ Section */
details.page-bnc__faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--card-bg-color);
    color: var(--text-main-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

details.page-bnc__faq-item summary.page-bnc__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--text-main-color);
}

details.page-bnc__faq-item summary.page-bnc__faq-question::-webkit-details-marker {
    display: none;
}

details.page-bnc__faq-item summary.page-bnc__faq-question:hover {
    background: var(--deep-green-color);
}

.page-bnc__faq-qtext {
    flex: 1;
    text-align: left;
    color: var(--text-main-color);
}

.page-bnc__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-left: 15px;
    width: 30px;
    text-align: center;
}

details.page-bnc__faq-item .page-bnc__faq-answer {
    padding: 0 25px 20px;
    background: var(--deep-green-color);
    border-radius: 0 0 10px 10px;
    text-align: left;
    color: var(--text-secondary-color);
}

.page-bnc__faq-answer p {
    margin-top: 10px;
    color: var(--text-secondary-color);
}

/* Final CTA Section */
.page-bnc__cta-final-section {
    background-color: var(--deep-green-color);
    padding: 80px 20px;
}

.page-bnc__cta-final-section .page-bnc__section-title {
    color: var(--gold-color);
}

.page-bnc__cta-final-section .page-bnc__text-block {
    color: var(--text-secondary-color);
    margin-bottom: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-bnc__section-title {
        font-size: 2.5em;
    }
    .page-bnc__text-block {
        font-size: 1em;
    }
    .page-bnc__grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-bnc__hero-section {
        padding-top: 10px !important; /* Small top padding, body handles --header-offset */
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-bnc__main-title {
        font-size: 2.5em;
    }
    .page-bnc__description {
        font-size: 1em;
    }
    .page-bnc__cta-button {
        padding: 15px 30px;
        font-size: 1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-bnc__cta-button:not(:last-child) {
        margin-bottom: 15px;
    }
    .page-bnc__button-group {
        flex-direction: column;
        align-items: center;
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-bnc__section {
        padding: 40px 0;
    }
    .page-bnc__section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }
    .page-bnc__container {
        padding: 0 15px;
    }
    .page-bnc__grid {
        grid-template-columns: 1fr;
    }
    .page-bnc__card, .page-bnc__promo-card {
        padding: 20px;
    }
    .page-bnc__card-title {
        font-size: 1.5em;
    }
    .page-bnc__ordered-list, .page-bnc__unordered-list {
        padding-left: 10px;
    }
    .page-bnc__ordered-list li, .page-bnc__unordered-list li {
        font-size: 0.95em;
    }
    details.page-bnc__faq-item summary.page-bnc__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-bnc__faq-toggle {
        font-size: 24px;
        width: 24px;
    }
    details.page-bnc__faq-item .page-bnc__faq-answer {
        padding: 0 20px 15px;
    }

    /* Image responsiveness */
    .page-bnc img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-bnc__section,
    .page-bnc__card,
    .page-bnc__container,
    .page-bnc__promo-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-bnc__hero-image img {
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .page-bnc__main-title {
        font-size: 2em;
    }
    .page-bnc__section-title {
        font-size: 1.8em;
    }
    .page-bnc__cta-button {
        font-size: 0.95em;
    }
    details.page-bnc__faq-item summary.page-bnc__faq-question {
        font-size: 1em;
    }
    .page-bnc__faq-qtext {
        line-height: 1.4;
    }
}