body {
    font-family: Arial, Helvetica, sans-serif;
    display: block;
    margin: 0;
    padding: 0; 
    background-color: white;
}

.menu {
    display: flex; /* Align menu items side by side */
    justify-content: center; /* Center the menu items horizontally */
    align-items: center; /* Align items vertically */
    background: linear-gradient(to right, #4CAF50, #5387d6); /* Gradient background */
    max-width: 100%; /* Set a maximum width for the menu */
    padding: 0; /* Remove extra padding */
    margin: 0; /* Remove default margin */
    list-style: none; /* Remove bullet points */
    height: 80px; /* Set a fixed height for the menu */
}

.menu li {
    margin: 0 15px; /* Add spacing between menu items */
    display: flex; /* Display items inline */
    align-items: center; /* Center items vertically */
    height: 100%; /* Ensure items take full height of the menu */
}

.menu a {
    text-decoration: none; /* Remove underline from links */
    color: white; /* Set link text color */
    font-weight: bold; /* Make the text bold */
    padding: 10px 15px; /* Add padding around the text */
    border-radius: 5px; /* Optional: Add rounded corners */
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

.menu a:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Add a hover effect */
}

.logo {
    display: flex; /* Use flexbox for alignment */
    justify-content: center; /* Center the logo horizontally */
    align-items: center; /* Center the logo vertically */
    margin: 0; /* Remove extra margin */
    position: absolute; /* Position the logo inside the menu bar */
    top: 10px; /* Adjust the vertical position to move it higher */
    left: 20px; /* Keep it aligned to the left */
    width: 5%; /* Set a fixed width for the logo */
    height: auto; /* Maintain aspect ratio */
}

.contact {
    text-align: center; /* Center the contact section */
    margin: 20px auto; /* Add spacing around the contact section */
    padding: 20px; /* Add padding for better spacing */
}

.contact-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form .radio-group {
    display: flex; /* Use flexbox for alignment */
    flex-direction: column; /* Stack the options vertically */
    gap: 10px; /* Add spacing between the options */
    margin-bottom: 15px; /* Add spacing below the group */
}

.contact-form .radio-group label {
    display: flex; /* Align the radio button and text horizontally */
    align-items: center; /* Center the radio button and text vertically */
    gap: 10px; /* Add spacing between the radio button and the text */
    font-size: 16px; /* Ensure consistent font size */
    line-height: 1.5; /* Adjust line height for better alignment */
}

.contact-form .radio-group input[type="radio"] {
    margin: 0; /* Remove default margin around the radio button */
    accent-color: #4CAF50; /* Optional: Change the color of the radio button */
}

.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    display: block;
    width: 100%;
    padding: 10px;
    background: linear-gradient(to right, #4CAF50, #5387d6); /* Gradient background */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #45a049;
}

@media screen and (max-width: 768px) {
    .menu {
        flex-direction: column; /* Stack menu items vertically on small screens */
        height: auto; /* Allow height to adjust based on content */
    }
    
    .menu li {
        margin: 5px 0; /* Adjust spacing for vertical layout */
    }
    
    .contact-form {
        width: 90%; /* Make the form take up more width on smaller screens */
    }
    
    .logo {
        width: 10%; /* Adjust logo size for smaller screens */
        left: 10px; /* Adjust position for smaller screens */
    }
    
}