/* styles.css */
body {
    margin: 0;
    padding: 0;
    font-family: 'Nunito', 'Lato', Arial, sans-serif;
    background-color: #eaf4e3;
    color: #4a4a4a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}

header {
    background-color: #a8d5ba;
    padding: 20px;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav {
    margin-top: 8px;
}

.tabs {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

.tab {
    padding: 8px 20px;
    cursor: pointer;
    background-color: #d4e8d4;
    border-radius: 5px;
    margin: 0 5px;
    font-family: 'Lora', serif;
    text-decoration: none;
    color: #4a4a4a;
}

.tab.active {
    background-color: #4a7c59;
    color: #ffffff;
}

h1 {
    font-family: 'EB Garamond', serif;
    color: #ffffff;
    margin: 0;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

section {
    background-color: #f4f9f4;
    padding: 20px;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 600px;
}

h2 {
    font-family: 'Lora', serif;
    color: #4a7c59;
}

p {
    font-family: 'Source Sans Pro', sans-serif;
    color: #4a4a4a;
    text-align: left;
}

/* Green hyperlinks */
a {
    color: #4a7c59;
}

footer {
    background-color: #a8d5ba;
    padding: 10px;
    width: 100%;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

footer p {
    margin: 0;
    color: #ffffff;
    font-family: 'Public Sans', sans-serif;
}

/* Responsive Design */
@media (max-width: 600px) {
    section {
        width: 95%;
    }
}
