body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Add the following CSS to center the navigation menu */

.hero-header {
    background-color: #163322;
    padding: 20px 0;
    text-align: center; /* Center align the header content */
}

.logo-container {
    text-align: center;
}

.logo {
    width: 200px; /* Adjust the width as needed */
    height: auto;
}

.site-title {
    font-size: 32px; /* Adjust the font size as needed */
    color: #fff; /* Set the color for the site title */
    margin: 10px 0;
    padding: 0;
}

.nav-links {
    list-style: none;
    padding: 0;
}

.nav-links li {
    display: inline-block; /* Display menu items in a line */
    margin: 0 10px; /* Add spacing between menu items */
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

/* The rest of your existing CSS styles for the header and the rest of the page */

.hero {
    background-color: #f2f2f2;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 36px;
}

.cta-btn {
    display: inline-block;
    background-color: #163322;
    color: #fff;
    padding: 12px 30px;
    margin-top: 20px;
    text-decoration: none;
    border-radius: 5px;
}

.features {
    background-color: #f2f2f2;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
}

.card-container {
    display: flex;
    justify-content: flex-start;
    transition: transform 0.3s ease;
}

.feature-item {
    flex: 0 0 300px;
    max-width: 300px;
    margin: 20px;
    padding: 20px;
    text-align: left;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-item img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}

.feature-item h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 16px;
    color: #555;
}

.contact {
    background-color: #f2f2f2;
    padding: 80px 0;
    text-align: center;
}

.contact h2 {
    margin-bottom: 20px;
}

.contact input,
.contact textarea,
.contact button {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
}

.contact button {
    background-color: #163322;
    color: #fff;
    border: none;
    cursor: pointer;
}

footer {
    background-color: #163322;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

.about {
    background-color: #f2f2f2;
    padding: 80px 0;
    text-align: center;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    flex: 1 0 300px;
    max-width: 300px;
    margin: 20px;
    padding: 20px;
    text-align: left;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.card img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.card p {
    font-size: 16px;
    color: #555;
}

.card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Swap cards left and right on larger screens */
@media (min-width: 768px) {
    .card:nth-child(2) {
        order: -1;
    }
}
