.why-section {
    display: flex;
    gap: 3rem;
    width: 100%;
    align-items: center;
}

.why-section-about {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 1rem;
}

.why-section-about p {
    line-height: 2;
}

.why-section-about-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: start;
    font-size: 2.3rem;
}

.why-section-about-description {
    text-align: start;
    color: #464542;
}

.why-section-image {
    flex: 1;
}

@media (max-width: 1020px) {
    .why-section {
        flex-direction: column;
    }

    .why-section-about-title {
        text-align: center;
        justify-content: center;
    }

    .why-section-about-description {
        text-align: center;
        line-height: 1.5;
    }

    .why-section-image {
        width: 100%;
    }

    .why-section-image img {
        width: 100%;
    }
}