.hero {
    background-color: var(--secondary);
    color: var(--dark-gray);

    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    text-align: center;
}

.hero h2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.hero-image {
    height: 40vh;
    background-image: url("/img/landing/pexels-anna-nekrashevich-6801874.jpg");
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: row;
    padding: 0 1rem;
    justify-content: space-between;
    margin-block-start: 2rem;
    gap: 2rem;
}

.cta-buttons .cta {
    background-color: var(--icon);
}

section {
    padding: 1rem 0;
}

section.benefits ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 1rem;
    gap: 2rem;
}

section h2,
section p {
    text-align: center;
}

@media screen and (max-width: 800px) {
    section.benefits ul {
        flex-direction: column;
    }
}