/* Reset some basic elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.6;
}

/* Navbar styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #005f73; /* Dark background for the navbar */
    padding: 10px 20px;
}

.logo img {
    height: 2in; /* Logo height as requested */
}

.nav-links {
    list-style-type: none;
    display: flex;
    gap: 20px; /* Space between the menu items */
}

.nav-links li {
    padding: 0.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #94d2bd; /* Lighter color on hover for menu items */
}

/* Layout and Typography */
html {
    font-size: 16px; /* Base font size */
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Header and Navigation */
header {
    background-color: #005f73;
    color: white;
    padding: 0.5rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.logo img {
    vertical-align: middle;
    height: 2in; /* 2 inches tall as per request */
}

.nav-links {
    list-style-type: none;
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav-links li {
    padding: 0 1rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #9ad3de;
}

/* Main Content */
main {
    padding: 2rem;
}

.feature-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

section {
    margin-bottom: 2rem;
}

/* Testimonials */
.testimonial blockquote {
    font-style: italic;
    color: #666;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background-color: #003542;
    color: white;
    text-align: center;
    padding: 1rem 0;
}

footer p {
    margin: 0;
}
