/* Basic Page Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #333;
}

/* Contact Section */
#contact-section {
  padding: 40px 20px;
  background: #fff;

}

.section-heading {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #ff512f; /* Accent color */
}

/* Contact Information Container */
.contact-info-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-info-item {
  flex: 1;
  min-width: 250px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
}

.contact-info-item h3 {
  margin-bottom: 10px;
  color: #ff512f;
}

/* Spacing between each row inside contact info text */
.contact-info-text p {
  margin: 5px 0;
}

/* Contact Form Container */
.contact-form-container {
  max-width: 600px;
  margin: 0 auto 40px auto;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

#contact-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

button[type="submit"] {
  background: #ff512f;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

button[type="submit"]:hover {
  background: #dd2476;
}

#form-response {
  margin-top: 15px;
  font-size: 1.1rem;
  color: green;
  text-align: center;
}

/* Map Container */
.map-container {
  padding-bottom: 40px;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact-info-container {
    flex-direction: column;
    align-items: center;
  }
}
