/* style/bn-c.css */
.page-bn-c {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-bn-c-hero {
    background: linear-gradient(135deg, #A80000 0%, #FFD700 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-bn-c-hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-bn-c-hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.8;
}

.page-bn-c-hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-bn-c-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.page-bn-c-btn-primary {
    background-color: #FFD700;
    color: #A80000;
    border-color: #FFD700;
}

.page-bn-c-btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-bn-c-btn-secondary {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.page-bn-c-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-bn-c-section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 8px;
}

.page-bn-c-section:nth-of-type(even) {
    background-color: #f0f0f0;
}

.page-bn-c-section-title {
    font-size: 2.5em;
    color: #A80000;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-bn-c-sub-title {
    font-size: 1.8em;
    color: #A80000;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-bn-c-content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.page-bn-c-content-wrapper.page-bn-c-reverse-order {
    flex-direction: row-reverse;
}

.page-bn-c-image-wrapper {
    flex: 1;
    min-width: 300px;
}

.page-bn-c-text-content {
    flex: 2;
}

.page-bn-c-img-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.page-bn-c-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-bn-c-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-bn-c-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #A80000;
    font-weight: bold;
    font-size: 1.2em;
}

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

.page-bn-c-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-bn-c-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-bn-c-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-bn-c-card-title {
    font-size: 1.6em;
    color: #A80000;
    margin-bottom: 15px;
    padding: 0 20px;
}

.page-bn-c-card-description {
    font-size: 1em;
    color: #555;
    padding: 0 20px;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-bn-c-btn-small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 30px;
    margin-top: auto;
}

.page-bn-c-grid-2-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-bn-c-benefit-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-bn-c-benefit-item:hover {
    transform: translateY(-5px);
}

.page-bn-c-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-bn-c-benefit-title {
    font-size: 1.5em;
    color: #A80000;
    margin-bottom: 15px;
}

.page-bn-c-cta-app-content {
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: #A80000;
    color: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-bn-c-cta-app-content .page-bn-c-text-content {
    flex: 2;
}

.page-bn-c-cta-app-content .page-bn-c-section-title {
    color: #FFD700;
    text-align: left;
    margin-bottom: 20px;
    padding-bottom: 0;
}

.page-bn-c-cta-app-content .page-bn-c-section-title::after {
    display: none;
}

.page-bn-c-cta-app-content p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.page-bn-c-app-image {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.page-bn-c-app-image img {
    max-height: 400px;
    width: auto;
    display: block;
    margin: 0 auto;
    border: 5px solid #FFD700;
    border-radius: 15px;
}

.page-bn-c-cta-buttons {
    display: flex;
    gap: 20px;
}

.page-bn-c-cta-buttons .page-bn-c-btn-primary {
    background-color: #FFD700;
    color: #A80000;
    border-color: #FFD700;
}

.page-bn-c-cta-buttons .page-bn-c-btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-bn-c-cta-buttons .page-bn-c-btn-secondary {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.page-bn-c-cta-buttons .page-bn-c-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #FFD700;
}

.page-bn-c-faq .page-bn-c-section-title {
    color: #A80000;
}

.page-bn-c-accordion {
    margin-top: 40px;
}

.page-bn-c-accordion-item {
    background-color: #fefefe;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-bn-c-accordion-header {
    padding: 20px 25px;
    background-color: #A80000;
    color: #fff;
    font-size: 1.3em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-bn-c-accordion-header:hover {
    background-color: #8c0000;
}

.page-bn-c-accordion-header::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.page-bn-c-accordion-item.active .page-bn-c-accordion-header::after {
    content: '-';
    transform: rotate(180deg);
}

.page-bn-c-accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: #fefefe;
    color: #333;
}

.page-bn-c-accordion-item.active .page-bn-c-accordion-content {
    max-height: 300px; /* Adjust as needed */
    padding: 20px 25px;
}

.page-bn-c-accordion-content p {
    margin-bottom: 15px;
}

.page-bn-c-conclusion {
    text-align: center;
    padding: 80px 0;
    background-color: #FFD700;
    color: #A80000;
    box-shadow: none;
}

.page-bn-c-conclusion .page-bn-c-section-title {
    color: #A80000;
}

.page-bn-c-conclusion p {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto;
}

.page-bn-c-inline-link {
    color: #A80000;
    font-weight: bold;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-bn-c-inline-link:hover {
    color: #8c0000;
}

.page-bn-c-highlight {
    color: #FFD700;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-bn-c-hero .page-bn-c-highlight {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-bn-c-cta-app-content .page-bn-c-highlight {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-bn-c-hero-title {
        font-size: 2.5em;
    }
    .page-bn-c-hero-description {
        font-size: 1.1em;
    }
    .page-bn-c-section-title {
        font-size: 2em;
    }
    .page-bn-c-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .page-bn-c-content-wrapper.page-bn-c-reverse-order {
        flex-direction: column;
    }
    .page-bn-c-text-content, .page-bn-c-image-wrapper {
        flex: none;
        width: 100%;
    }
    .page-bn-c-cta-app-content {
        flex-direction: column;
        text-align: center;
    }
    .page-bn-c-cta-app-content .page-bn-c-section-title {
        text-align: center;
    }
    .page-bn-c-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-bn-c-app-image img {
        max-height: 300px;
    }
}

@media (max-width: 768px) {
    .page-bn-c-hero {
        padding: 80px 0;
    }
    .page-bn-c-hero-title {
        font-size: 2em;
    }
    .page-bn-c-hero-description {
        font-size: 1em;
    }
    .page-bn-c-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-bn-c-section-title {
        font-size: 1.8em;
    }
    .page-bn-c-sub-title {
        font-size: 1.5em;
    }
    .page-bn-c-grid-3-cols, .page-bn-c-grid-2-cols {
        grid-template-columns: 1fr;
    }
    .page-bn-c-card {
        margin: 0 auto;
        max-width: 400px;
    }
    .page-bn-c-benefit-item {
        max-width: 450px;
        margin: 0 auto;
    }
    .page-bn-c-accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-bn-c-accordion-content {
        padding: 15px 20px;
    }
    .page-bn-c-conclusion p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-bn-c-hero {
        padding: 60px 0;
    }
    .page-bn-c-hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-bn-c-hero-title {
        font-size: 1.8em;
    }
    .page-bn-c-btn {
        width: 90%;
        margin: 0 auto;
    }
    .page-bn-c-section {
        padding: 40px 0;
    }
    .page-bn-c-section-title {
        font-size: 1.5em;
    }
    .page-bn-c-cta-app-content {
        padding: 30px;
    }
    .page-bn-c-app-image img {
        max-height: 250px;
    }
}