.elementor-32 .elementor-element.elementor-element-86106a8{--display:flex;}/* Start custom CSS for html, class: .elementor-element-3116387 *//* General Styling for the Contact Page */
.contact-container {
  padding: 50px;
  background: linear-gradient(135deg, gold, blue, white);
  min-height: 100vh;
  margin-top: 50px;
}

h1, h2 {
  text-align: center;
  color: #fff;
  font-size: 2.5em;
}

h3 {
  text-align: center;
  color: #fff;
  font-size: 2em;
  margin-top: 20px;
}

.contact-info {
  margin-top: 50px;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.contact-info p {
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  margin: 15px 0;
}

.contact-info .location {
  margin-top: 30px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 10px;
}

.contact-info .location h3 {
  color: #fff;
}

.contact-info .location p {
  color: #fff;
  font-size: 16px;
}

.form-container {
  margin-top: 40px;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.form-container h3 {
  color: #fff;
  margin-bottom: 20px;
}

.form-container form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-container input,
.form-container textarea {
  padding: 10px;
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  width: 80%;
}

.form-container button {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.form-container button:hover {
  background-color: #218838;
}

/* AOS Animations */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styling */
@media screen and (max-width: 768px) {
  .contact-container {
    padding: 20px;
  }

  .contact-info, .form-container {
    padding: 15px;
  }

  .contact-info p, .contact-info .location p, .form-container input, .form-container textarea {
    font-size: 16px;
  }
}/* End custom CSS */