body {
    margin: 0;
    background-color: #f7f7f7;
    color: #00231c;
    font-family: Arial, sans-serif;
}

.site-header,
.site-footer {
    padding: 20px;
    background-color: #014038;
    color: white;
}

.header-inner,
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: auto;
}

.review {
    flex: 1;
    padding: 15px;
    background-color: white;
    border: 2px solid #96baa0;
}

.brand,
.nav,
.footer-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand {
    text-decoration: none;
    font-weight: bold;
}

.brand img {
    width: 60px;
}

.nav a,
.footer-nav a {
    color: white;
    text-decoration: none;
}

main {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

.hero {
    padding: 100px 20px;
    background-image: url("assets/apple-tree.png");
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.button {
    display: inline-block;
    padding: 10px;
    background-color: #014038;
    color: white;
    text-decoration: none;
}

.secondary {
    background-color: #f0c06d;
    color: #00231c;
}

.section-heading,
.copyright {
    text-align: center;
}

.grid-3 {
    display: flex;
    gap: 20px;
}

.card {
    flex: 1;
    background-color: white;
}

.card img {
    width: 100%;
}

.card-body {
    padding: 15px;
}

.mobile-menu-label {
    display: none;
}

@media (max-width: 700px) {
    .header-inner,
    .footer-inner,
    .grid-3 {
        flex-direction: column;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.form-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.field {
    width: 48%;
}

.full {
    width: 100%;
}

.field span,
.field legend {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input,
select,
textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #999;
    border-radius: 4px;
}

textarea {
    height: 120px;
}

.checks {
    margin-top: 8px;
}

button {
    padding: 10px 18px;
    background: #014038;
    color: white;
    border: none;
}