.swb-block {
    padding: 120px 0 0;
    background-color: #fff;
}

/* ── Two-column row ── */
.swb-block__row {
    align-items: center;
    justify-content: center;
}

/* col-lg-10 wrapper: make its children (col-lg-6) sit side by side */
.swb-block__row > .col-lg-10 {
    display: flex;
    gap: 52px;
    flex-wrap: nowrap;
}

/* =========================================================
   Left column
   ========================================================= */


.swb-block__title {
    margin-bottom: 24px !important;
}

.swb-block__subtitle {
   color: #1A1A1A;
    font-size: 26px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%; 
    margin-bottom: 8px;
}

.swb-block__description {
    font-size: 16px;
    font-weight: 400;
    color: #444;
}

.swb-block__description p {
    margin: 0 0 16px;
}

.swb-block__description p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   Right column — item list
   ========================================================= */
.swb-block__right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.swb-block__items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.swb-block__item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 2px solid #E6E6E6;
}

.swb-block__item:first-child {
    padding-top: 0;
}

.swb-block__item:last-child {
    border-bottom: none;
}

/* Icon */
.swb-block__item-icon {
    margin-top: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Item content */
.swb-block__item-content {
    display: flex;
    flex-direction: column;
}

.swb-block__item-title {
    color: #000;
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 2px;
}

.swb-block__item-description {
    color: #4D4D4D;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

/* =========================================================
   Responsive — Tablet (max-width: 1024px)
   ========================================================= */
@media (max-width: 1199.98px) {
    .swb-block {
        padding: 80px 0 0;
    }

    .swb-block__row > .col-lg-10 {
        flex-direction: column;
        gap: 22px;
    }

    .swb-block__left,
    .swb-block__right
    {
       margin: 0 auto;
    }

    .swb-block__title {
        text-align: center !important;
        margin: auto;
        margin-bottom: 16px !important;
    }
    .swb-block__title br {
        display: none;
    }

    .swb-block__subtitle {
        text-align: center;
         margin-bottom: 14px;
    }

    .swb-block__description {
        text-align: center;
    }

    .swb-block__item {
        gap: 12px;
        padding: 24px 0;
    }

    .swb-block__item:first-child {
         border-top: 2px solid #E6E6E6;
         padding-top: 22px;
    }
     .swb-block__item-title {
        font-size: 18px;
         margin-bottom: 4px;
    }
}

/* =========================================================
   Responsive — Mobile (max-width: 767px)
   ========================================================= */
@media (max-width: 767.98px) {
    .swb-block {
        padding: 60px 0 0;
    }

    .swb-block__title {
        text-align: center;
         margin-bottom: 22px !important;
    }

    .swb-block__title br {
        display: none;
    }

    .swb-block__subtitle {
        text-align: center;
        margin-bottom: 14px;
        font-size: 24px;
    }
     .swb-block__item {
        padding: 12px 0;
    }

    .swb-block__description {
        text-align: center;
        font-size: 14px;
    }

    .swb-block__item-title {
        font-size: 16px;
    }

    .swb-block__item-description {
         font-size: 14px;
    }
}