/* Start custom CSS for shortcode, class: .elementor-element-2fb8f2e *//* Container styling */
.wpcf7-form {
  max-width: 600px;
  margin: 30px auto;
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
  color: #333;
}

/* Heading style */
.wpcf7-form h2 {
  text-align: center;
  margin-bottom: 20px;
}

/* Labels */
.wpcf7-form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

/* Inputs and textarea styling */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="date"],
.wpcf7-form input[type="file"],
.wpcf7-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 1rem;
  resize: vertical;
}

/* Textarea height */
.wpcf7-form textarea {
  min-height: 100px;
}

/* Submit button */
.wpcf7-form input[type="submit"] {
  margin-top: 20px;
  padding: 12px;
  width: 100%;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.wpcf7-form input[type="submit"]:hover {
  background-color: #0056b3;
}/* End custom CSS */