/* Reset some default styles */
body, ul {
    margin: 0;
    padding: 0;
}

/* Style the header */
header {
    background-color: #ffffff; /* Change to your desired background color */
    color: #345742; /* Change to your desired text color */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px; /* Adjust padding as needed */
}

/* Style the logo */
.logo img {
    max-height: 150px; /* Adjust the max height as needed */
}

/* Style the navigation menu */
nav ul {
    list-style: none;
    display: flex;
}

nav li {
    margin-right: 20px; /* Adjust the spacing between menu items */
}

nav a {
    text-decoration: none;
    color: #345742; /* Change to your desired text color */
    font-weight: bold;
}

/* Change link color on hover if desired */
nav a:hover {
    color: #ff9900; /* Change to your desired hover color */
}

/* Add your existing CSS styles here */

/* Media query for mobile */
@media screen and (max-width: 768px) {
    .nav-list {
        display: none; /* Hide the list on small screens */
        flex-direction: column;
        position: absolute;
        top: 60px; /* Adjust to your header height */
        left: 0;
        background-color: #333; /* Background color for mobile menu */
        width: 100%;
        padding: 10px;
        z-index: 1;
    }

    .nav-list.active {
        display: flex; /* Show the list when the mobile menu is active */
    }

    .nav-list li {
        margin: 10px 0;
    }

    .mobile-nav-toggle {
        display: block; /* Show the mobile menu toggle button */
        cursor: pointer;
    }
}

.container {
    background-color: #fff;
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 20px;
    padding-right: 20px;
}

label {
    font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #555;
}