/* style/bnc.css */
:root {
    --primary-color: #FF8C1A;
    --secondary-color: #FFA53A;
    --card-bg: #17191F;
    --background-color-bnc: #0D0E12;
    --text-main: #FFF3E6;
    --border-color: #A84F0C;
    --glow-color: #FFB04D;
    --deep-orange: #D96800;
    --button-gradient: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
}

.page-bnc {
    font-family: 'Arial', sans-serif;
    color: var(--text-main); /* Default text color for the page */
    background-color: var(--background-color-bnc); /* Page background */
    line-height: 1.6;
    font-size: 16px;
}

.page-bnc__section {
    padding: 60px 20px;
    margin: 0 auto;
    max-width: 1400px;
}

.page-bnc__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.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(--background-color-bnc);
}

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

.page-bnc__hero-image {
    width: 100%;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

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

.page-bnc__main-title {
    font-size: 3.2em;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.page-bnc__lead-text {
    font-size: 1.2em;
    color: var(--text-main);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.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.1em;
    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;
    white-space: normal;
    word-wrap: break-word;
}

.page-bnc__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
    filter: brightness(1.1);
}

.page-bnc__section-title {
    font-size: 2.5em;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-bnc__section-title--white {
    color: var(--text-main);
}

.page-bnc__section-description {
    font-size: 1.1em;
    color: var(--text-main);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    opacity: 0.85;
}

.page-bnc__section-description--white {
    color: var(--text-main);
    opacity: 1;
}

.page-bnc__text-block {
    font-size: 1em;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.7;
    opacity: 0.8;
}

.page-bnc__image-wrapper {
    margin: 40px auto;
    max-width: 1000px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-bnc__image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.page-bnc__grid-layout--advantages {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.page-bnc__card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    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 {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.page-bnc__card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-bnc__card-text {
    font-size: 0.95em;
    color: var(--text-main);
    opacity: 0.75;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-bnc__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.9em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-bnc__btn-secondary:hover {
    background-color: var(--deep-orange);
    transform: translateY(-2px);
}

.page-bnc__ordered-list, .page-bnc__unordered-list {
    list-style-position: inside;
    text-align: left;
    margin: 40px auto;
    max-width: 800px;
    padding-left: 20px;
}

.page-bnc__ordered-list li, .page-bnc__unordered-list li {
    color: var(--text-main);
    margin-bottom: 15px;
    font-size: 1.05em;
    line-height: 1.8;
}

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

.page-bnc__card--advantage {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(var(--border-color), 0.5);
    padding: 25px;
}

.page-bnc__card--advantage .page-bnc__card-title {
    color: var(--glow-color);
    font-size: 1.3em;
}

.page-bnc__card--advantage .page-bnc__card-text {
    font-size: 0.9em;
    opacity: 0.9;
}

.page-bnc__card--promotion img {
    
}

.page-bnc__btn-primary {
    display: inline-block;
    padding: 10px 20px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-bnc__btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.page-bnc__faq-area {
    background-color: var(--background-color-bnc);
}

details.page-bnc__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: 0 4px 15px 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: 18px 25px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
    color: var(--text-main);
    font-weight: 600;
}

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: rgba(var(--primary-color), 0.1);
}

.page-bnc__faq-qtext {
    flex: 1;
    font-size: 1.1em;
    line-height: 1.5;
    text-align: left;
    color: var(--text-main);
}

.page-bnc__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-left: 15px;
    width: 28px;
    text-align: center;
    transition: transform 0.3s ease;
}

details[open] .page-bnc__faq-toggle {
    transform: rotate(45deg);
}

details.page-bnc__faq-item .page-bnc__faq-answer {
    padding: 0 25px 20px;
    background: var(--card-bg);
    border-top: 1px solid rgba(var(--border-color), 0.3);
    border-radius: 0 0 8px 8px;
}

details.page-bnc__faq-item .page-bnc__faq-answer p {
    color: var(--text-main);
    opacity: 0.8;
    font-size: 0.95em;
}

.page-bnc__cta-final {
    padding: 80px 20px;
    background: var(--button-gradient);
}

.page-bnc__cta-final .page-bnc__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

.page-bnc__cta-button--final {
    padding: 18px 40px;
    font-size: 1.15em;
    border-radius: 50px;
    background: #FFF3E6; /* White background for contrast */
    color: var(--primary-color); /* Primary color text */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.page-bnc__cta-button--final:hover {
    background: #ffffff;
    color: var(--deep-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-bnc__cta-button--outline {
    background: transparent;
    border: 2px solid #FFF3E6;
    color: #FFF3E6;
}

.page-bnc__cta-button--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-bnc__main-title {
        font-size: 2.8em;
    }
    .page-bnc__section-title {
        font-size: 2em;
    }
    .page-bnc__lead-text, .page-bnc__section-description {
        font-size: 1em;
    }
    .page-bnc__card-title {
        font-size: 1.3em;
    }
}

@media (max-width: 768px) {
    .page-bnc {
        font-size: 15px;
    }
    .page-bnc__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-bnc__main-title {
        font-size: clamp(2em, 8vw, 2.5em);
        margin-bottom: 15px;
    }
    .page-bnc__lead-text {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-bnc__cta-button {
        padding: 15px 30px;
        font-size: 1em;
        width: 100%;
        max-width: 300px;
        box-sizing: border-box;
    }
    .page-bnc__section {
        padding: 40px 15px;
    }
    .page-bnc__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-bnc__section-description {
        font-size: 0.95em;
        margin-bottom: 40px;
    }
    .page-bnc__grid-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-bnc__card {
        padding: 25px;
    }
    .page-bnc__card img {
        
    }
    .page-bnc__card-title {
        font-size: 1.2em;
    }
    .page-bnc__card-text {
        font-size: 0.9em;
    }
    .page-bnc__btn-secondary, .page-bnc__btn-primary {
        padding: 10px 20px;
        font-size: 0.85em;
    }
    .page-bnc__ordered-list, .page-bnc__unordered-list {
        padding-left: 0;
        margin: 30px auto;
    }
    .page-bnc__ordered-list li, .page-bnc__unordered-list li {
        font-size: 1em;
        margin-bottom: 10px;
    }
    details.page-bnc__faq-item summary.page-bnc__faq-question {
        padding: 15px 20px;
    }
    .page-bnc__faq-qtext {
        font-size: 1em;
    }
    .page-bnc__faq-toggle {
        font-size: 20px;
        width: 24px;
        height: 24px;
    }
    details.page-bnc__faq-item .page-bnc__faq-answer {
        padding: 0 20px 15px;
    }
    .page-bnc__cta-final {
        padding: 50px 15px;
    }
    .page-bnc__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-bnc__cta-button--final {
        font-size: 1em;
        padding: 15px 30px;
        width: 100%;
        max-width: 300px;
        box-sizing: border-box;
    }

    /* Ensure all images are responsive and don't overflow */
    .page-bnc img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .page-bnc__section,
    .page-bnc__card,
    .page-bnc__container,
    .page-bnc__image-wrapper,
    .page-bnc__cta-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-bnc__hero-section .page-bnc__container {
        padding-left: 0;
        padding-right: 0;
    }
    .page-bnc__cta-button,
    .page-bnc__btn-primary,
    .page-bnc__btn-secondary,
    .page-bnc a[class*="button"],
    .page-bnc a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
}

@media (max-width: 480px) {
    .page-bnc__main-title {
        font-size: clamp(1.8em, 9vw, 2.2em);
    }
    .page-bnc__cta-button {
        padding: 12px 25px;
        font-size: 0.9em;
    }
    .page-bnc__section-title {
        font-size: 1.5em;
    }
    .page-bnc__card-title {
        font-size: 1.1em;
    }
}