/* ---------------- About Section: Two Columns ---------------- */

.about-container {
  display: flex;
  gap: 4rem;
  justify-content: center;
  align-items: stretch;
}

.about-hero {
  flex: 1;
  background-color: var(--chambray);
  z-index: 1;
}

.about-hero .hero-logo {
  width: 280px;
  margin-bottom: 1.5rem;
}

.hero-logo {
  width: 300px;
  /* transform: translateX(95%); */
  /* Move 40px to the right */
  margin: auto;
  margin-bottom: 30px;
  display: block;
  padding: 100px 0px 30px 0px;
}

.hero-text {
  font-size: 1.6rem;
  color: var(--cornflower);
  text-align: left;
  padding: 25px;
}

.about-content {
  flex: 1;
  text-align: left;
}

.about-content h2 {
  font-size: 2.2rem;
  color: var(--cornflower, #4a90e2);
  margin-bottom: 1.2rem;
}

.about-content p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-section {
  padding: 20px;
  margin-top: 60px;
  margin-bottom: 150px;
}

/* ---------------- Responsive: Stack on Mobile ---------------- */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-hero,
  .about-content {
    text-align: center;
  }

  .hero-text,
  .about-content p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-hero .hero-logo {
    width: 220px;
  }

  .hero-logo {
    width: 220px;
    margin: auto;
    /* transform: translateX(40%); */
    /* Move 40px to the right */
  }
}



/* ---------------- Responsive ---------------- */
@media (max-width: 900px) {
  .footer .container {
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }

  .footer-tagline,
  .contactfooter,
  .socialMedia,
  .ourlinks,
  .award {
    grid-column: span 1;
  }

  .about-hero .hero-logo {
    width: 240px;
  }
}

@media (max-width: 600px) {
  .footer .container {
    grid-template-columns: 1fr;
  }

  .hero-text {
    font-size: 1.1rem;
  }
}