.banner {
  background: url("/Pictures/AboutUsBanner.webp") no-repeat center center/cover;
}

/* .hero {
    height: 40vh;
    background-color: rgb(0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    color: white;
    padding: 20px;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-content h2 {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.7);
} */

.about-section {
  padding: 80px 40px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Intro */
.about-intro {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-intro-text {
  flex: 1;
}

.about-intro-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: rgb(20, 20, 20);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.about-intro-text h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background-color: orange;
}

.about-intro-text p {
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-intro img {
  width: 45%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

/* Goal */
.about-goal h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: rgb(20, 20, 20);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.about-goal h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background-color: orange;
}

.about-goal p {
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.7;
  max-width: 800px;
}

/* Why us */
.about-why h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: rgb(20, 20, 20);
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.about-why h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background-color: orange;
}

.about-why-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-why-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background-color: white;
  padding: 30px;
  border-radius: 8px;
}

.about-why-card svg {
  flex-shrink: 0;
}

.about-why-card h3 {
  font-size: 1.1rem;
  color: rgb(20, 20, 20);
  margin-bottom: 8px;
}

.about-why-card p {
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .about-intro {
    flex-direction: column;
  }

  .about-intro img {
    width: 100%;
    height: 250px;
  }
}
