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

.page-bnc {
    color: var(--text-main-color); /* Body background is dark, so text is light */
    background-color: var(--background-color);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

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

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

.page-bnc__section-title {
    font-size: 3em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 140, 26, 0.5);
    line-height: 1.2;
}

.page-bnc__sub-title {
    font-size: 1.8em;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-bnc__text-block p {
    margin-bottom: 15px;
}

.page-bnc__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 165, 58, 0.4);
    border: none;
}

.page-bnc__cta-button:hover {
    background: linear-gradient(180deg, var(--deep-orange-color) 0%, var(--secondary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 165, 58, 0.6);
}

.page-bnc__btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
}

.page-bnc__btn-primary:hover {
    background: linear-gradient(180deg, var(--deep-orange-color) 0%, var(--secondary-color) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(255, 165, 58, 0.4);
}

.page-bnc__btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    transition: all 0.3s ease;
}

.page-bnc__btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(255, 140, 26, 0.3);
}

.page-bnc__btn-inline {
    margin-top: 20px;
}

.page-bnc__button-group {
    text-align: center;
    margin-top: 40px;
}

/* 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;
}

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

.page-bnc__hero-image {
    width: 100%;
    margin-bottom: 30px;
    max-height: 600px; /* Limit hero image height */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

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

.page-bnc__hero-title {
    font-size: clamp(2.5em, 5vw, 3.5em);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(255, 165, 58, 0.8);
}

.page-bnc__hero-description {
    font-size: 1.2em;
    color: var(--text-main-color);
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-bnc__cta-button--bottom {
    margin-top: 50px;
}

/* General Content Layout */
.page-bnc__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.page-bnc__content-wrapper--reversed {
    flex-direction: row-reverse;
}

.page-bnc__text-block,
.page-bnc__image-block {
    flex: 1;
}

.page-bnc__image-block img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px;
    object-fit: cover;
}

/* Grid Layouts */
.page-bnc__grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

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

/* Card Styles */
.page-bnc__card {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: var(--text-main-color);
    height: 100%; /* Ensure cards in a grid have equal height */
}

.page-bnc__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 165, 58, 0.3);
}

.page-bnc__card img {
    width: 100%;
    height: 200px; /* Fixed height for consistency in cards */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
}

.page-bnc__card-title {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.page-bnc__card p {
    font-size: 0.95em;
    color: var(--text-main-color);
}

/* Guide Section */
.page-bnc__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-bnc__guide-item {
    background-color: var(--card-bg-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-bnc__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--button-gradient);
    color: #ffffff;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(255, 165, 58, 0.5);
}

.page-bnc__step-title {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-bnc__guide-image-wrapper {
    text-align: center;
    margin-top: 40px;
}

.page-bnc__guide-image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    min-width: 200px;
    min-height: 200px;
}

/* Tips Section */
.page-bnc__tip-list {
    list-style: none;
    padding-left: 0;
}

.page-bnc__tip-list li {
    background-color: var(--card-bg-color);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-bnc__tip-list li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2em;
    flex-shrink: 0;
}

/* Promotions Section */
.page-bnc__promo-text {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
    color: var(--text-main-color);
}

.page-bnc__promo-text a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-bnc__promo-text a:hover {
    color: var(--primary-color);
}

/* Blog Section */
.page-bnc__blog-card {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-main-color);
    overflow: hidden;
}

.page-bnc__blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 165, 58, 0.3);
}

.page-bnc__blog-card img {
    width: 100%;
    height: 220px; /* Consistent image height for blog cards */
    object-fit: cover;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

.page-bnc__card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-bnc__blog-card .page-bnc__card-title {
    font-size: 1.2em;
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.page-bnc__card-date {
    font-size: 0.85em;
    color: #999;
    margin-bottom: 10px;
}

.page-bnc__card-excerpt {
    font-size: 0.9em;
    line-height: 1.5;
    color: var(--text-main-color);
}

/* FAQ Section */
details.page-bnc__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    background: var(--card-bg-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
details.page-bnc__faq-item summary.page-bnc__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
    color: var(--primary-color);
    font-weight: bold;
}
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(255, 140, 26, 0.1);
}
.page-bnc__faq-qtext {
    flex: 1;
    font-size: 1.1em;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
}
.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;
}
details.page-bnc__faq-item .page-bnc__faq-answer {
    padding: 0 20px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 0 5px 5px;
    color: var(--text-main-color);
}

/* Global Image Responsive Styles */
.page-bnc img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .page-bnc__section {
        padding: 40px 0;
    }

    .page-bnc__container {
        padding: 0 15px;
    }

    .page-bnc__section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .page-bnc__sub-title {
        font-size: 1.5em;
    }

    /* Hero Section */
    .page-bnc__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-bnc__hero-image {
        margin-bottom: 20px;
    }

    .page-bnc__hero-title {
        font-size: clamp(2em, 8vw, 2.5em);
    }

    .page-bnc__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-bnc__cta-button {
        padding: 12px 25px;
        font-size: 1em;
        width: 100%;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-bnc__cta-button--bottom {
        margin-top: 30px;
    }

    /* Content Layouts */
    .page-bnc__content-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .page-bnc__grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-bnc__grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-bnc__image-block img {
        min-width: 200px !important;
        height: auto !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    /* Cards */
    .page-bnc__card {
        padding: 20px;
    }

    .page-bnc__card img {
         /* Adjust card image height for mobile */
        min-width: 200px !important;
        min-
        max-width: 100% !important;
        width: 100% !important;
    }

    .page-bnc__card-title {
        font-size: 1.2em;
    }

    /* Guide Section */
    .page-bnc__guide-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-bnc__step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }

    /* Buttons */
    .page-bnc__btn-primary,
    .page-bnc__btn-secondary {
        padding: 10px 20px;
        font-size: 0.95em;
        width: 100%;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-bnc__btn-inline {
        margin-top: 15px;
    }

    .page-bnc__button-group {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* FAQ */
    details.page-bnc__faq-item summary.page-bnc__faq-question {
        padding: 15px;
    }

    .page-bnc__faq-qtext {
        font-size: 1em;
    }

    .page-bnc__faq-toggle {
        font-size: 20px;
    }

    details.page-bnc__faq-item .page-bnc__faq-answer {
        padding: 0 15px 15px;
    }

    /* Global image and button overrides for mobile */
    .page-bnc img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-bnc__section,
    .page-bnc__card,
    .page-bnc__container,
    .page-bnc__hero-section,
    .page-bnc__content-wrapper,
    .page-bnc__grid-2,
    .page-bnc__grid-3,
    .page-bnc__guide-steps,
    .page-bnc__blog-card,
    .page-bnc__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}