.hero {
    display: flex;
    gap: 3rem;
    width: 100%;
    align-items: center;
}

.hero-about {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 1rem;
}

.hero-about h2 {
    line-height: 1.4;
}

.hero-about-description {
    text-align: start;
    color: #6F6E6C;
}

.hero-about-description {
    line-height: 1.8;
}

.hero-image {
    display: flex;
    flex: 1;
}

.hero-image img {
    flex: 1;
    object-fit: contain;
    width: 100%;
    border-top-left-radius: 160px;
}

@media (max-width: 1020px) {
    .hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-about {
        align-items: center;
    }

    .hero-about h2 {
        text-align: center;
    }

    .hero-about-description {
        text-align: center;
        line-height: 1.8;
    }

    .hero-image {
        width: 100%;
    }

    .hero-image img {
        border-radius: 0px;
        width: 100%;
    }
}