.why-us-section {
    background: #FFFFFF;
    padding: 100px 120px 120px;
}

.why-us__container {
    max-width: 1680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 56px;
}

.why-us__main-title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 78px;
    color: #000000;
    margin: 0;
    width: 1680px;
    max-width: 100%;
}

.why-us__accent {
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 24px;
    background: linear-gradient(90deg, #2F6298 0%, #438DB0 100%);
    height: 60px;
    box-sizing: border-box;
    align-self: flex-start;
}

.why-us__accent-title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 34px;
    line-height: 60px;
    color: #FFFFFF;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
    width: 1680px;
    max-width: 100%;
}

.why-us__card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 24px 32px;
    box-sizing: border-box;
    transition: background 0.3s ease, border-bottom 0.3s ease;
    background: transparent;
    border-bottom: 1px solid transparent;
    cursor: pointer;
}

.why-us__card:hover {
    background: #F8F7F7;
    border-bottom: 1px solid #000000;
}

.why-us__card:active {
    background: #ecebeb;
}

.why-us__icon {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
}

.why-us__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-us__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.why-us__card-title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 44px;
    color: #000000;
    margin: 0;
}

.why-us__card-desc {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: #000000;
    margin: 0;
}
@media (min-width: 1360px) {
    .why-us__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 56px;
    }
}
@media (max-width: 1359px) and (min-width: 1025px) {
    .why-us-section {
        padding: 80px 40px 100px;
    }

    .why-us__container {
        gap: 40px;
    }

    .why-us__main-title {
        font-size: 42px;
        line-height: 56px;
        width: 100%;
    }

    .why-us__grid {
        grid-template-columns: 1fr;
        gap: 40px;
        width: 100%;
    }

    .why-us__card {
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (max-width: 1024px) {
    .why-us-section {
        padding: 80px 40px 100px;
    }
    .why-us__accent {
        padding: 8px 16px;
        width: 100%;
        height: auto;
    }

    .why-us__accent-title {
        font-size: 16px;
        line-height: 22px;
        font-weight: 400;
        white-space: normal;
    }
    .why-us__container {
        gap: 24px;
    }

    .why-us__main-title {
        font-size: 42px;
        line-height: 56px;
        width: 100%;
    }

    .why-us__grid {
        grid-template-columns: 1fr;
        gap: 40px;
        width: 100%;
    }

    .why-us__card {
        padding: 20px 20px 28px;
    }
}
@media (max-width: 767px) {
    .why-us-section {
        padding: 40px 16px;
    }

    .why-us__container {
        gap: 0px;
    }

    .why-us__main-title {
        font-size: 22px;
        line-height: 30px;
        width: 100%;
        margin-bottom: 16px;
    }

    .why-us__accent {
        padding: 8px 16px;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
        height: auto;
        box-sizing: border-box;
        background: linear-gradient(90deg, #2F6298 0%, #438DB0 100%);
        border-radius: 0;
        margin-bottom: 24px;
    }

    .why-us__accent-title {
        font-family: 'Noto Sans', sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        color: #FFFFFF;
        margin: 0;
        padding: 0;
        white-space: normal;
        word-break: normal;
        overflow-wrap: break-word;
        hyphens: auto;

    }

    .why-us__accent-title > div {
        display: inline !important;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .why-us__grid {
        grid-template-columns: 1fr;
        gap: 24px;
        width: 100%;
    }

    .why-us__card {
        padding: 24px 16px 32px;
        gap: 12px;
    }

    .why-us__icon {
        width: 32px;
        height: 32px;
    }

    .why-us__card-title {
        font-size: 20px;
        line-height: 21px;
    }

    .why-us__card-desc {
        font-size: 16px;
        line-height: 24px;
        font-weight: 300;
    }
}