body {
  font-family: 'Quicksand', sans-serif;
  text-align: center;
  background: linear-gradient(to bottom, #d0ebff, #ffffff);
  min-height: 100vh;
}

h1, h2, .title {
  font-family: 'Baloo 2', cursive;
}

.top-banner {
  padding: 1.5rem 0;
  padding-bottom: 0.75rem;
}

.main-header {
  font-family: 'Baloo 2', cursive;
  font-size: 3.5rem;
  color: #1e5ba8;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-img {
  width: 400px;
  max-width: 90%;
  margin: 0 auto;
}

.hero {
  padding-top: 1rem;
  padding-bottom: 3rem;
}

.img-side {
  max-width: 120px;
}

.img-below {
  max-width: 150px;
  margin-top: 2rem;
}

.button.is-primary {
  background-color: #1e5ba8;
  color: white;
  font-weight: bold;
  border: none;
}

/* Form initially hidden with smooth animation */
#contact-form-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

/* When visible */
#contact-form-wrapper.active {
  max-height: 900px; /* Adjust if form gets taller */
}

/* Image Grid Styles */
.image img {
  border-radius: 12px;
}

/* Facebook Link Styles */
.facebook-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.facebook-link {
  color: #1877f2;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.facebook-link:hover {
  color: #145dbf;
  transform: scale(1.1);
}

.follow-us-link {
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.follow-us-link:hover {
  opacity: 0.8;
}

.follow-us-text {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1877f2;
}

