.page-bnc {
    background-color: #F4F7FB;
    color: #1F2D3D;
    padding-top: 10px; /* Small top padding for content below assumed shared header padding */
}

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

.page-bnc__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
    padding: 40px 20px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 1200px;
}

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

.page-bnc__hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px;
}

.page-bnc__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    /* Using clamp for responsive font size, avoiding large fixed values */
    font-size: clamp(2em, 4vw, 3.5em);
}

.page-bnc__description {
    font-size: 1.1em;
    color: #E0EFFF;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-bnc__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Ensure button itself is not too small */
    text-align: center;
}

.page-bnc__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-bnc__intro-section, .page-bnc__features-section, .page-bnc__cta-section {
    padding: 60px 0;
}

.page-bnc__section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: #1F2D3D;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.page-bnc__paragraph {
    font-size: 1.05em;
    line-height: 1.7;
    color: #1F2D3D;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-bnc__feature-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.page-bnc__feature-icon {
    width: 100%;
    height: auto;
    max-width: 400px; /* Ensure images in cards are not too small */
    margin-bottom: 20px;
    border-radius: 8px;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px;
}

.page-bnc__feature-title {
    font-size: 1.4em;
    font-weight: 600;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
}

.page-bnc__feature-description {
    font-size: 1em;
    color: #1F2D3D;
    line-height: 1.6;
}

.page-bnc__cta-section {
    text-align: center;
    padding-bottom: 80px;
}

.page-bnc__cta-button--large {
    padding: 18px 40px;
    font-size: 1.1em;
}

.page-bnc__small-text {
    font-size: 0.9em;
    color: #6FA3FF;
    margin-top: 30px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-bnc__hero-section {
        padding: 30px 15px;
        margin: 10px auto;
    }

    .page-bnc__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
        margin-bottom: 15px;
    }

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

    .page-bnc__cta-button {
        padding: 12px 25px;
    }

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

    .page-bnc__paragraph {
        font-size: 0.95em;
    }

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

    .page-bnc__feature-card {
        padding: 20px;
    }

    /* Ensure images do not overflow on mobile */
    .page-bnc__hero-image, .page-bnc__feature-icon {
        max-width: 100%;
        height: auto;
    }
}