
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    padding-top: 20px;
}

form h2 {
    text-align: center;
}

form label {
    display: block;
    margin-top: 10px;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

form input[type="submit"] {
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

form input[type="submit"]:hover {
    background-color: #004494;
}
header {
    background-color: #ffffff; 
    color: rgb(128, 128, 128);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    height: 95px;
    width: 100%;
    box-sizing: border-box;
    filter: drop-shadow(0px 1px 2px rgba(157, 157, 157, 0.5));
    margin: 0;
    position: fixed; 
    top: 0; 
    left: 0; 
    z-index: 1000; 
    padding: 0;
    
}

header #logo {
    height: 75px;
    margin-left: 485px; 
}
header nav {
    display: flex;
    flex: .7; /* Allows the nav to fill the space */
    justify-content: flex-start; /* Align nav items to the start */
    
}

header nav a {
    color: rgb(143, 139, 139);
    margin-right: 20px;
    text-decoration: none;
    transition: transform 0.3s ease;
    padding-left: -1000;

}


header nav a:hover {
    transform: scale(0.9);
    color: #0d0dbe;
}

