body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f8f6eb;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-position: 0px 0px;
  transition: background-position 0.1s ease;
}
.container {
  display: flex;
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  width: 1200px;
  max-width: 100%;
}
.info {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  margin: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 80%;
  left: 20px;
  transform: translateY(-50%);
  z-index: 1;
  width: 250px;
  height: 10 0px;
}
.info i {
  color: #3b82f6;
  margin-right: 10px;
}
.info p {
  margin: 12px 0;
  color: #6b7280;
  font-size: 20px;
}
.form-container {
  padding: 40px;
  background-color: white;
  border-radius: 10px;
  position: relative;
  z-index: 2;
  flex: 1;
}
.form-container h2 {
  margin-top: 0;
}
.form-container label {
  display: block;
  margin: 10px 0 5px;
}
.form-container input,
.form-container textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #d1d5db;
  border-radius: 5px;
  font-size: 16px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-container input:focus,
.form-container textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
  outline: none;
}
.form-container textarea {
  resize: none;
}
.form-container button {
  background-color: #1f2937;
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  display: block;
  margin: 0 auto;
  transition: background-color 0.3s;
}
.form-container button:hover {
  background-color: #111827;
}
.image-container {
  position: relative;
  width: 50%;
}
.image-container img {
  width: auto;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
  .info,
  .form-container {
    margin: 10px;
  }
  .image-container {
    width: 100%;
  }
}
.menu {
  font-size: 18px;
  color: #b35a1f;
  display: flex; /* Flexbox for layout */
  align-items: center; /* Center items vertically */
  background-color: #ffffff; /* Dark background for the menu */
  padding: 10px; /* Padding around the menu */
}

.menu-icon {
  cursor: pointer; /* Pointer cursor for the menu icon */
}

.menu-text {
  margin-left: 10px; /* Space between icon and text */
}

.dropdown {
  display: none; /* Initially hide the dropdown */
  position: absolute; /* Position it absolutely */
  background-color: white; /* White background for dropdown */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Shadow for dropdown */
  z-index: 1000; /* Ensure it appears above other elements */
}

.dropdown.show {
  display: block; /* Show dropdown when active */
}

.ul {
  list-style-type: none; /* Remove bullet points */
  padding: 0; /* Remove padding */
  margin: 0; /* Remove margin */
}

.li {
  padding: 10px 20px; /* Padding for each menu item */
}

.a {
  text-decoration: none; /* Remove underline from links */
  color: black; /* Black text color */
  display: block; /* Make the entire area clickable */
}

.a:hover {
  background-color: #f0f0f0; /* Light background on hover */
}

.container {
  display: flex; /* Flexbox for layout */
  justify-content: space-between; /* Space between items */
  padding: 20px; /* Padding around the container */
}

.image-container {
  flex: 1; /* Allow the image container to grow */
  margin-right: 20px; /* Space between image and form */
}

.info {
  flex: 1; /* Allow the info section to grow */
  margin-right: 20px; /* Space between info and form */
}

.form-container {
  flex: 2; /* Allow the form to take more space */
}

h2 {
  margin-bottom: 10px; /* Space below the heading */
}

label {
  display: block; /* Block display for labels */
  margin-top: 10px; /* Space above labels */
}

input,
textarea {
  width: 100%; /* Full width for inputs and textareas */
  padding: 10px; /* Padding inside inputs */
  margin-top: 5px; /* Space above inputs */
  border: 1px solid #ccc; /* Border for inputs */
  border-radius: 4px; /* Rounded corners */
}

button {
  margin-top: 10px; /* Space above button */
  padding: 10px 15px; /* Padding inside button */
  background-color: #333; /* Dark background for button */
  color: white; /* White text color */
  border: none; /* No border */
  border-radius: 4px; /* Rounded corners */
  cursor: pointer; /* Pointer cursor for button */
}

button:hover {
  background-color: #555; /* Darker background on hover */
}

@media (max-width: 768px) {
  /* Hide the image container on mobile */
  .image-container {
    display: none;
  }

  /* Adjust the container layout */
  .container {
    flex-direction: column;
    width: 90%;
    padding: 10px;
  }

  /* Adjust the form container */
  .form-container {
    width: 80%;
    padding: 20px;
  }

  .form-container input,
  .form-container textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
  }

  .form-container button {
    width: 110%;
    padding: 10px;
    font-size: 16px;
  }
}
