body {
    padding-top: 12px;
    background-color: #e6f0fa !important;
    color: #212529; /* Bootstrap’s default text color */
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}


/* =========================
   HERO SECTION
========================= */
.hero-section {
  background: #ffffff;
  padding: 3rem 1.5rem;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-text {
  flex: 1;
}

.hero-logo {
  max-width: 260px;
  margin-bottom: 1.5rem;
}

.hero-text h1 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.hero-lead {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 1rem;
}

.hero-contact {
  font-size: 0.95rem;
  line-height: 1.6;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  max-height: 420px;
}

.contact-form-panel {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.1);
}
.btn-primary {
  background-color: #0056b3;
  border-color: #0056b3;
}
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image img {
    max-height: 320px;
  }
}
