.why-us-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    padding-bottom: 40px;
}

.why-us-title {
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
    text-align: center;
    color: var(--text-main);
}

.why-us-subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: var(--text-main);
}

.why-us-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
    padding-bottom: 80px;
}

.why-us-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px;
    border-radius: 20px;
    border: 1px solid transparent;
    transition: all var(--transition-base);
    cursor: pointer;
    box-shadow: 2px 2px 4px 0px #00000029 inset,
    2px 2px 3px 0px #00000029 inset,
    -2px -2px 4px 0px #FFFFFF inset,
    -2px -2px 4px 0px #FFFFFF inset;
    position: relative;
}
.why-us-card::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(92.1deg, #F6F6F6 1.23%, rgba(255, 255, 255, 0.32) 99.83%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: all var(--transition-base);
}
.why-us-card:hover {
    box-shadow: 2px 2px 4px 0px #00000029,
    2px 2px 3px 0px #00000029,
    -2px -2px 4px 0px #FFFFFF,
    -2px -2px 4px 0px #FFFFFF;
    transition: all var(--transition-base);
}

.why-us-icon-wrapper {
    min-width: 140px;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us-icon-wrapper img {
    width: 84px;
    height: 84px;
    object-fit: contain;
}

.why-us-card-text-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.why-us-card-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: var(--text-main);
}

.why-us-card-description {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: var(--text-main);
}

@media (max-width: 1600px) {
    .why-us-title {
        font-size: 32px;
    }

    .why-us-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
        padding-bottom: 28px;
    }

    .why-us-icon-wrapper {
        min-width: 120px;
        width: 120px;
        height: 120px;
    }

    .why-us-icon-wrapper img {
        width: 58px;
        height: 58px;
    }
}

@media (max-width: 1279px) {
    .why-us-header {
        padding-bottom: 28px;
    }

    .why-us-title {
        font-size: 28px;
    }

    .why-us-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 24px;
        padding-bottom: 24px;
    }

    .why-us-icon-wrapper {
        min-width: 110px;
        width: 110px;
        height: 110px;
    }

    .why-us-icon-wrapper img {
        width: 54px;
        height: 54px;
    }

    .why-us-card-title {
        font-size: 18px;
    }

    .why-us-card-description {
        font-size: 14px;
    }
}

@media (max-width: 1023px) {
    .why-us-header {
        padding-bottom: 24px;
    }

    .why-us-title {
        font-size: 24px;
    }

    .why-us-cards-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        padding-bottom: 20px;
    }

    .why-us-icon-wrapper {
        min-width: 120px;
        width: 120px;
        height: 120px;
    }

    .why-us-icon-wrapper img {
        width: 58px;
        height: 58px;
    }
}

@media (max-width: 767px) {
    .why-us-header {
        padding-bottom: 20px;
        gap: 8px;
    }

    .why-us-title {
        font-size: 22px;
    }

    .why-us-cards-container {
        gap: 8px;
        padding-bottom: 10px;
    }

    .why-us-icon-wrapper {
        min-width: 120px;
        width: 120px;
        height: 120px;
    }

    .why-us-icon-wrapper img {
        width: 58px;
        height: 58px;
    }

    .why-us-card {
        gap: 12px;
        padding: 4px;
        border-radius: 12px;
    }

    .why-us-icon-wrapper {
        min-width: 80px;
        width: 80px;
        height: 80px;
    }

    .why-us-icon-wrapper img {
        width: 42px;
        height: 42px;
    }

    .why-us-card-text-content {
        gap: 4px;
    }

    .why-us-card-title {
        font-size: 14px;
    }

    .why-us-card-description {
        font-size: 12px;
    }
}

@media (max-width: 374px) {
    .why-us-title {
        font-size: 20px;
    }
}