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

header {
    background-color: rgb(0, 135, 0);
    color: #fff;
    padding: 1rem;
}

header h1 {
    display: inline;
    margin-right: 1rem;
}

nav ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 20px;
}

nav ul li {
    margin-right: 1rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding: 14px 16px;
    border: 1px solid #fff;
}

nav ul li a:hover {
    text-decoration: underline;
}


.section {
    padding: 20px;
}

.section-title {
    font-size: 24px;
    color: #008000;
    margin-bottom: 10px;
}

.section-content {
    font-size: 16px;
    color: #000000;
    margin-bottom: 10px;
    padding: 14px 16px;
    border: 5px solid green;
}

.contact-info {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 16px;
    color: #008000;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
    border: 1px solid #008000;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px;
}

input[type="submit"] {
    border: none;
    border-radius: 5px;
    padding: 10px;
    background-color: #008000;
    color: #ffffff;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #e0e0e0;
}

@media (max-width: 768px) {
    .contact-form {
        width: 100%;
    }
}

img {
    float: left;
    height: 70px;
}