body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.contact-page {
    background: url('../images/background.webp') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.contact-header {
    background-color: rgba(255, 255, 255, 0.8); /* Light background with higher opacity */
    color: #333; /* Dark text color */
    padding: 1rem 0;
    text-align: center;
}

.contact-header h1 {
    margin: 0;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 1rem;
}

nav ul li a {
    color: #333; /* Dark text color for links */
    text-decoration: none;
}

nav ul li a:hover {
    text-decoration: underline;
}

.contact-main {
    flex: 1;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-section {
    background-color: rgba(255, 255, 255, 0.9); /* Light background with higher opacity */
    color: #333; /* Darker text color */
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px; /* Restrict the width of the section */
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.contact-section h2 {
    font-weight: bold; /* Increase font weight for better readability */
    margin-bottom: 1rem;
    font-size: 2rem; /* Increase font size */
    color: #333; /* Darker text color */
}

.contact-section form {
    display: flex;
    flex-direction: column;
}

.contact-section label {
    margin-bottom: 0.5rem;
    font-size: 1rem; /* Increase font size */
    color: #333; /* Darker text color */
}

.contact-section input,
.contact-section textarea {
    margin-bottom: 1rem;
    padding: 0.5rem;
    font-size: 1rem; /* Increase font size */
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    width: 100%;
}

.contact-section button {
    padding: 0.5rem;
    font-size: 1rem; /* Increase font size */
    color: #fff;
    background-color: #333;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.contact-section button:hover {
    background-color: #555;
}

#thank-you-message {
    margin-top: 1rem;
    font-size: 1.2rem; /* Increase font size */
    color: #333; /* Darker text color */
}
