body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    color: #079336;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
}

.main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

header {
    background-color: #079336;
    color: white;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    margin: 0;
    font-size: 1.2em;
}

section#contact {
    padding: 20px;
    text-align: center;
    background-color: #f1f1f1;
    color: #079336;
}

#contact h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

#contact p {
    font-size: 1.2em;
    margin: 5px 0;
}

#contact a {
    color: #079336;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}
