/* ================= ABOUT US ================= */

.about-section {
  padding: 100px 60px;
  background: #ffffff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* FLEX LAYOUT */
.about-flex {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGE */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  object-fit: cover;
}

/* CONTENT */
.about-content {
  flex: 1.3;
}

.about-title {
  font-size: 34px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.about-intro {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 10px;
}

.about-content p {
  font-size: 15px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 8px;
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {

  .about-section {
    padding: 50px 24px;
  }

  /* STACK */
  .about-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  /* TITLE ABOVE IMAGE */
  .about-title {
    font-size: 28px;
    margin-bottom: 14px;
  }

 
   .about-image {
    margin: 16px 0 24px;   /* space above & BELOW image */
    padding-bottom: 8px;  /* extra breathing room */
    align-self: center;
  }

  .about-image img {
    max-width: 300px;
  }

  /* TEXT BELOW IMAGE */
  .about-content p {
    line-height: 1.65;
    margin-bottom: 8px;
  }
}
