body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    width: 100%;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

header {
    background-color: #005a87;
    color: #ffffff;
    padding: 20px 0;
}

header h1 {
    display: inline-block;
    margin: 0;
}

header h1 img {
    height: 1em;
    /* vertical-align: middle; */
    align-self: left;
}

header h1 a {
    color: #ffffff;
    text-decoration: none;
}

nav {
    float: right;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

nav ul li a {
    color: #ffffff;
    text-decoration: none;
}

nav ul li.highlight a {
    background-color: #ff9800;
    /* Example: orange background */
    color: #ffffff;
    /* White text */
    padding: 5px 10px;
    /* Adjust padding as needed */
    border-radius: 5px;
    /* Optional: adds rounded corners */
}

/* Additional styling for hover effect */
nav ul li.highlight a:hover {
    background-color: #e65100;
    /* Darker shade of orange for hover */
}

#hero {
    background-color: #e0f2f1;
    padding: 50px 0;
    text-align: center;
}

#hero h2 {
    margin-top: 0;
}

#hero .cta {
    background-color: #00796b;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

#hero img {
    width: 100%;
    max-width: 600px;
    height: auto;
    box-shadow: 10px 10px 5px grey;
}

.secondary-cta {
    color: #00796b;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    border: 2px solid #00796b;
}

footer {
    background-color: #263238;
    background-position: bottom;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}

.feature {
    background-color: #f5f5f5;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 5px solid #007bff;
}

.feature h3 {
    color: #005a87;
}

.feature p {
    line-height: 1.6;
}

.team-member {
    background-color: #f0f0f0;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 5px solid #007bff;
}

.team-member h4 {
    color: #007bff;
    /* Blue for names */
}

.team-member p {
    line-height: 1.6;
}

input,
textarea {
    width: 100%;
    padding: 8px;
    margin: 10px 0;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    /* Ensures padding does not increase the width */
}

button {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

form {
    max-width: 600px;
}