body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding-bottom: 50px; /* ✅ Adjust for nav bar height */
    /* background: linear-gradient(to bottom, #b0cee8, #be8140); */
    background: linear-gradient(to bottom, #a7c4f2, #d3c7a7);
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    min-height: 100vh;
    overflow-y: auto;
}

.logo-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 20px auto; /* Space between logo and navigation buttons */
    Margin-top: 20px;
    width: 100%;
}

.logo-image {
    max-width: 300px; /* Adjust width as needed */
    height: auto;
}

.contact-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #333;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #f4f4f4;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-form label {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  color: #444;
}

.contact-form input[type="email"],
.contact-form input[type="file"],
.contact-form textarea {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  background-color: #008080;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #006666;
}
