.why-choose-us-section {
    text-align: center;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.why-choose-us-content {
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: start;
    gap: 1rem;
    max-width: 40%;
}

.why-choose-us-content p {
    font-size: 1rem;
    line-height: 1.6rem;
    color: #475467;
    text-align: start;
}

.advantages {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
}

.advantage {
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 1rem;
    align-items: start;
    text-align: start;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.advantage h6 {
    color: #000;
    font-weight: 700;
}

.advantage-img img {
    border-radius: 15px;
    height: 100%;
    width: 100%;
}

@media (max-width: 800px) {
    .why-choose-us-section {
        flex-direction: column;
        align-items: start;
    }

    .why-choose-us-content {
        max-width: 100%;
    }

    .advantages {
        flex-direction: column;
    }
}