.elementor-177 .elementor-element.elementor-element-ed907bb{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-ea4eb3d */.contact-section {
  background: linear-gradient(135deg, #f1f8e9, #ffffff);
  padding: 50px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h2 {
  font-size: 32px;
  color: #1b5e20;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.contact-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #c8e6c9;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.contact-card .icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.contact-form form {
  display: grid;
  gap: 15px;
}

.contact-form input, .contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  transition: all 0.3s ease;
}

.contact-form input:focus, .contact-form textarea:focus {
  border-color: #43a047;
  box-shadow: 0 0 8px rgba(67,160,71,0.3);
}

.contact-form button {
  background: linear-gradient(90deg, #43a047, #66bb6a);
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

.contact-form button:hover {
  background: linear-gradient(90deg, #388e3c, #43a047);
}/* End custom CSS */