/* Start custom CSS for text-editor, class: .elementor-element-68774ac0 */.contact-section {
  background: linear-gradient(to bottom, #fff, #c44);
  color: #333;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info, .contact-hours, .contact-payments {
  flex: 1 1 300px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.logo {
  max-width: 150px;
  margin-bottom: 20px;
}

.contact-info a {
  color: #c44;
  text-decoration: none;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  margin-right: 10px;
  font-size: 18px;
  color: #c44;
}

.contact-hours ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.contact-hours li {
  margin-bottom: 5px;
}

.contact-payments .payments {
  display: flex;
  gap: 10px;
  align-items: center;
}

.contact-payments img {
  height: 30px;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-info, .contact-hours, .contact-payments {
    width: 100%;
  }
}/* End custom CSS */