/* ===============================
   ABOUT – WHO WE ARE
================================ */

.about-who {
  padding: 4.5rem 2rem 2.5rem; /* top | sides | bottom */
  background: #ffffff;
}

.about-who-wrapper {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* TEXT */

.about-who-content h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1f2933;
  margin-bottom: 1.5rem;
}

.about-who-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #4b5563;
  margin-bottom: 1.2rem;
  max-width: 520px;
  text-align: justify;
}

/* remove extra gap after last paragraph */
.about-who-content p:last-child {
  margin-bottom: 0;
}

/* IMAGE */

.about-who-image img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
}

/* ===============================
   ABOUT – WHAT WE DO
================================ */

.about-what {
  padding: 2.5rem 2rem 4.5rem; /* top | sides | bottom */
  background: #fafafa;
}

.about-what-wrapper {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* IMAGE */

.about-what-image img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
}

/* CONTENT */

.about-what-content h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1f2933;
  margin-bottom: 1.5rem;
}

.about-what-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #4b5563;
  margin-bottom: 1.2rem;
  max-width: 520px;
  text-align: justify;
}

/* remove extra gap after last paragraph */
.about-what-content p:last-child {
  margin-bottom: 0;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
  .about-who-wrapper,
  .about-what-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-who-content h2,
  .about-what-content h2 {
    font-size: 2.1rem;
  }

  /* slightly tighter spacing on mobile */
  .about-who {
    padding: 3.5rem 1.5rem 2rem;
  }

  .about-what {
    padding: 2rem 1.5rem 3.5rem;
  }
}

/* ===============================
   ABOUT – US SINCE WHEN
================================ */

.about-since {
  padding: 4.5rem 2rem 2.5rem;
  background: #ffffff;
}

.about-since-wrapper {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* TEXT */

.about-since-content h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1f2933;
  margin-bottom: 1.5rem;
}

.about-since-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #4b5563;
  margin-bottom: 1.2rem;
  max-width: 520px;
  text-align: justify;
}

.about-since-content p:last-child {
  margin-bottom: 0;
}

/* IMAGE */

.about-since-image img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
  .about-since-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-since-content h2 {
    font-size: 2.1rem;
  }

  .about-since {
    padding: 3.5rem 1.5rem 2rem;
  }
}
/* ===============================
   ABOUT – WHY DESIGNMAESTER
================================ */

.about-why {
  padding: 4.5rem 2rem;
  background: #fdfdfd;
}

.about-why-wrapper {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

/* HEADING */

.about-why-wrapper h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1f2933;
  margin-bottom: 1.5rem;
}

/* INTRO TEXT */

.about-why-intro {
  max-width: 720px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #4b5563;
  text-align: justify;
}

/* GRID */

.about-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  text-align: left;
}

/* ITEMS */

.about-why-item {
  background: orange;          /* soft off-white */
  padding: 1.6rem 1.8rem;
  border-radius: 14px;
  font-size: 1.2rem;
  color: white;
  line-height: 1.6;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  border: 1px solid #e5e7eb;    /* light outline */
}


/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
  .about-why-grid {
    grid-template-columns: 1fr;
  }

  .about-why-wrapper h2 {
    font-size: 2.1rem;
  }

  .about-why {
    padding: 3.5rem 1.5rem;
  }
}
