@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: Roboto, sans-serif;
    margin: 0;
}

ul {
    list-style: none;
    display: flex;
    gap: 18px;
}

img {
    align-self: center;
    border-radius: 4px;
}

h2 {
    font-size: 32px;
    margin-bottom: 48px;
}

.links a {
    text-decoration: none;
    color: #ffffff;
}

.header {
    background-color: #263530;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 100px;
}

.logo {
    max-height: 32px;
}

.first {
    background-color: #263530;
    color: #ffffff;
    display: flex;
    padding: 80px 100px;
    flex-direction: row;
    justify-content: space-between;
    gap: 42px;
}

.hero-left button {
    background-color: #F2E9CE;
    color: #263530;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    padding: 12px 24px;
}

.hero-left {
    flex: 2;
}

.hero-right {
    max-width: 400px;
    height: auto;
    flex: 1;
}

.second {
    padding: 80px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services {
    display: flex;
    flex-flow: row wrap;
    text-align: center;
    gap: 42px;
}

.service {
    max-width: 200px;
}

.third {
    background-color: #F2E9CE;
    padding: 80px 260px;
    display: flex;
    flex-direction: column;
}

.quote {
    font-size: 28px;
    font-weight: 200;
    font-style: italic;
    margin-bottom: 0;
}

.cite {
    font-weight: 700;
    align-self: flex-end;
}

.fourth {
    padding: 80px 160px;
    display: flex;
    justify-content: center;
}

.cta {
    background-color: #688C4F;
    color: #ffffff;
    border-radius: 4px;
    padding: 24px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}

.cta-headline {
    font-weight: 700;
}

.cta-right {
    background-color: transparent;
    color: #ffffff;
    font-weight: 700;
    border: 3px solid #ffffff;
    border-radius: 4px;
    flex-shrink: 0;
    padding: 12px 24px;
}

.footer {
    background-color: #263530;
    color: #ffffff;
    display: flex;
    justify-content: center;
    padding: 18px 0;
}