.contact-methods {
  display: flex;
  flex-wrap: wrap; /* Allow items to wrap to the next line */
  justify-content: space-between;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-method {
  width: calc(50% - 10px); /* Adjust width to fit two items side by side with spacing */
  margin-bottom: 10px; /* Add margin to create space between items */
}

@media screen and (max-width: 768px) {
  .contact-method {
    width: 100%; /* Full width for smaller screens */
  }
}

.contact-form {
  margin-top: 20px;
}

.contact-form form {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
  margin-bottom: 0;
}

.contact-form label {
  display: block;
  font-weight: bold;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  width: calc(100% - 22px);
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.contact-form textarea {
  height: 100px;
  resize: none;
}

.contact-form .button-container {
  text-align: center;
  margin-top: 20px;
}

.contact-form button {
  background-color: #4CAF50;
  color: white;
  padding: 8px 12px;
  margin: 0 0 0 0;
  border: 1px solid #354039;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s;
  margin-top: 5px;
}

.contact-form button:hover {
  background-color: #45a049;
}

h3 {
text-decoration: underline;
}

.whatsapp-icon {
background-image: url(/icons/WhatsApp.svg);
background-repeat: no-repeat;
padding-left: 40px;
}

.email-icon {
background-image: url(/icons/Email.svg);
background-repeat: no-repeat;
padding-left: 40px;
}

/* Upload */

.upload-file-container label {
  display: block;
  font-weight: bold;
}

.upload-file-container input[type="file"] {
  width: calc(100% - 22px);
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.upload-file-container input[type="file"]::file-selector-button {
  background-color: #4CAF50;
  color: white;
  padding: 8px 12px;
  border: 1px solid #354039;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s;
  margin-right: 15px;
}

.upload-file-container input[type="file"]::file-selector-button:hover {
  background-color: #45a049;
}