/* =========================
   ABOUT HERO
========================= */

.about-hero {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.about-hero-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-hero-subtext {
  font-size: 18px;
  opacity: 0.85;
  max-width: 650px;
  margin: 0 auto;
}


/* =========================
   ABOUT GRID
========================= */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}


/* =========================
   FOUNDER IMAGE
========================= */

.about-image-wrapper {
  display: flex;
  justify-content: center;
}

.about-image {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}


/* =========================
   ABOUT CONTENT
========================= */

.about-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-intro {
  font-size: 16px;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 25px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #374151;
}

.about-closing {
  font-weight: 600;
  margin-top: 20px;
  font-size: 17px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    max-width: 350px;
  }

  .about-hero-title {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .about-hero {
    padding: 60px 20px;
  }

  .about-hero-title {
    font-size: 26px;
  }

  .about-hero-subtext {
    font-size: 16px;
  }

  .about-content p {
    font-size: 15px;
  }
}
