.blue_white_boxes {
    position: relative;
    background: #0A3956;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}


.blue_white_boxes_wrap {
    position: relative;
    padding: 96px 0;
    position: relative;
    z-index: 2;
}

.blue_white_boxes_header {
    max-width: 860px;
    margin: 0 auto 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blue_white_boxes_title {
    margin: 0;
    font-size: 60px;
    line-height: 1.1;
    color: #fff;
}

.blue_white_boxes_intro p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
}

.blue_white_boxes_sub_title {
    color: #939F26;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0 auto 35px!important;
    max-width: 820px;
    display: block;
}

.blue_white_boxes_table {
    max-width: 1180px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(5, 29, 46, 0.28);
    overflow: hidden;
}

.blue_white_boxes_cell {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.blue_white_boxes_row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    text-align: center;
}

.blue_white_boxes_row--head {
    background: #9CB245;
    color: #fff;
}

.blue_white_boxes_row--head .blue_white_boxes_cell {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 22px 18px;
    border: 1px solid #0A3956;
    line-height: 1.4;
}

.blue_white_boxes_row--head .blue_white_boxes_cell:last-child {
    border-right: none;
}

.blue_white_boxes_row--body {
    background: #ffffff;
}

.blue_white_boxes_row--body p {
    color: #0A3956;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
}

.blue_white_boxes_row--body .blue_white_boxes_cell {
    padding: 36px 28px;
    font-size: 16px;
    line-height: 1.6;
    border: 1px solid #0A3956;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.blue_white_boxes_row--body .blue_white_boxes_cell:last-child {
    border-right: none;
}

.blue_white_boxes_cell p:last-child {
    margin-bottom: 0;
}

.blue_white_boxes_accordion {
    display: none;
    margin: 0 auto;
    max-width: 1180px;
    gap: 16px;
}

.blue_white_boxes_accordion_item {
    border: 1px solid #0A3956;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(5, 29, 46, 0.12);
}

.blue_white_boxes_accordion_head {
    background: #9CB245;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 22px 18px;
    text-align: center;
}

.blue_white_boxes_accordion_body {
    padding: 36px 28px;
    color: #0A3956;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
}



.blue_white_boxes .bg_pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    
    & .bg_pattern_img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

@media (max-width: 1199px) {
    .blue_white_boxes_table {
        margin: 0 24px;
        max-width: none;
    }

    .blue_white_boxes_row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blue_white_boxes_row--head .blue_white_boxes_cell:nth-child(2n) {
        border-right: none;
    }

    .blue_white_boxes_row--body .blue_white_boxes_cell:nth-child(2n) {
        border-right: none;
    }
}

@media (max-width: 767px) {
    .blue_white_boxes_title {
        font-size: 42px;
    }

    .blue_white_boxes_wrap {
        padding: 72px 0;
    }

    .blue_white_boxes_row {
        grid-template-columns: 1fr;
    }

    .blue_white_boxes_row--head .blue_white_boxes_cell,
    .blue_white_boxes_row--body .blue_white_boxes_cell {
        border-right: none !important;
        border-bottom: 1px solid rgba(10, 57, 86, 0.12);
    }

    .blue_white_boxes_row--head .blue_white_boxes_cell:last-child,
    .blue_white_boxes_row--body .blue_white_boxes_cell:last-child {
        border-bottom: none;
    }

    .blue_white_boxes_table--desktop {
        display: none;
    }

    .blue_white_boxes_accordion {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }
}

