* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Tahoma, Geneva, sans-serif;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: #0f9c67;
    font-weight: bold;
    font-size: 20px;
}

a:hover {
    text-decoration: underline;
}

.header {
    padding: 30px;
    width: 100%;
}

.header__row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

@media (max-width: 800px) {
    .header__row {
        flex-direction: column;
        gap: 20px;
    }
}

.hero {
    padding: 30px;
}

.hero__row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}

.hero__title {
    max-width: 600px;
}

@media (max-width: 1400px) {
    .hero__row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}


h1 {
    font-size: 45px;
    color: #2e2e2e;
    margin-bottom: 30px;
}

.hero__title .green {
    color: green;
    margin-bottom: 20px;
    font-size: 30px;
}

p {
    margin-bottom: 20px;
    font-size: 30px;
}

p .second {

}


@media (max-width: 700px) {
    h1 {
        font-size: 35px;
        text-align: center;
    }
    p {
        margin-bottom: 20px;
        font-size: 20px;
    }
    .hero__title .green {
        color: green;
        margin-bottom: 20px;
        font-size: 20px;
    }
}

.hero__image {
    max-width: 500px;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #e3e3e3;

    -webkit-box-shadow: 4px 4px 8px -5px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 4px 4px 8px -5px rgba(34, 60, 80, 0.2);
    box-shadow: 4px 4px 8px -5px rgba(34, 60, 80, 0.2);
}

@media (max-width: 1400px) {
    .hero__image {
        max-width: 700px;
        width: 100%;
        min-width: unset;
    }
}

.hero__image img {
    object-fit: contain;
    width: 100%;
    display: block;
}