.why-choose {
    padding: 80px 0;
    background: #fff;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 40px;
}

.why-choose-item {
    text-align: center;
}

.why-choose-icon {
    width: 90px;
    height: 90px;
    margin: 0 0 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-icon img {
    width:90px;
    height: auto;
}

.why-choose-item h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2d3d;
}

.why-choose-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7c93;
    margin-bottom: 12px;
}

.why-choose-link {
    font-size: 18px;
    color: #3bbfb4;
    text-decoration: none;
    font-weight: 500;
}

.why-choose-link:hover {
    text-decoration: underline;
}
.why-choose-item p {
    font-size: 18px;
    text-align: left;
}
.why-choose-item p a {
    font-size: 18px;
    text-align: left;
    color: #3bbfb4;
    text-decoration: underline;
}
.why-choose-item {
    text-align: left;
}
/* Tablet */
@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 575px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}
