body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: white;
}

header {
    position: fixed;
    top: 0;
    left: 50;
    width: 100%;
    background-color: rgb(108, 147, 128); /* new color */
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    text-align: center;
}

.logo-container img {
    max-width: 30%; /* Adjust this value to change the size of the logo */
    height: auto;
}

.container {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8); /* Added a semi-transparent white background to the container for better text visibility */
    padding: 10px;
    margin-top: 0px; /* Added margin to avoid the header covering the content */
}

.contact-form input, .contact-form textarea {
    display: block;
    width: 100%; /* Increased the width of the input boxes from 50% to 70% */
    padding: 10px;
    margin: 10px auto; /* Centered the input boxes */
}



.contact-form button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
}

.contact-info {
    margin-top: 50px;


