body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    color: #2e5e2d;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 20px 0;
}

.hero img {
    max-width:450px;
    margin-bottom: 5px;
}

/* Main Content Wrapper */
.main-content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 20px;
    height: calc(100vh - 150px); /* Adjust height to fit screen */
    box-sizing: border-box;
}

/* Section Styles */
.section {
    width: 45%;
}

/* Headings */
.section h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background-color: #2e5e2d;
    color: white;
    text-align: center;
    padding: 10px;
}
