/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #2d6a4f;
    color: white;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Styles */
header {
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 3rem;
}

header h1 a {
    color: white;
    text-decoration: none;
    font-size: 3rem;
}

header h1 a:hover {
    text-decoration: underline;
}

header h2 {
    margin: 0;
    font-size: 3rem;
}

header h2 a {
    color: white;
    text-decoration: none;
    font-size: 2rem;
}

header h2 a:hover {
    text-decoration: underline;
}


/* Navigation Styles */
nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

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

/* Section Styles */
section {
    padding: 20px;
    margin: 0 10%;
    flex: 1;
}

section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.center {
    text-align: center;
}

/* Footer Styles */
footer {
    padding: 10px 0;
    text-align: center;
}

/* Image Styles */
.center-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 100%;
    height: auto;
}

