body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background-color: #4CAF50;
    color: white;
    padding: 1em 0;
    position: relative;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.menu-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding-right: 20px;
}

.menu-btn {
    font-size: 24px; /* Smaller font size for the menu button */
    cursor: pointer;
}

header h1 {
    margin: 0;
    text-align: center;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.banner {
    background-image: url('zambianfarm.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    position: relative;
}

.banner .overlay {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding-bottom: 20px;
}

.banner h2 {
    margin: 0;
    font-size: 2.5em;
}

.banner p {
    margin: 0.5em 0 0;
    font-size: 1.2em;
}

.content {
    padding: 2em;
    background-color: white;
    margin: 2em 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.content h2 {
    color: #4CAF50;
    margin-top: 0;
}

.content ul {
    list-style: disc;
    padding-left: 1.5em;
}

footer {
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 1em 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}
