body.about-page {
  background: #fff;
}

.about-content {
  color: #797979;
}

.about-founders-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 72px;
  align-items: center;
  width: min(100% - 64px, 1120px);
  margin: 0 auto;
  padding: 84px 0;
}

.about-founders__image {
  display: block;
  width: 100%;
  height: auto;
}

.about-founders__copy h1 {
  margin: 0 0 34px;
  color: #333;
  font-size: 54px;
  line-height: 1.08;
}

.about-founders__copy h1 span,
.about-founders__copy > p span {
  color: #8fc640;
}

.about-founders__copy p {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.85;
}

.about-founders__copy .button {
  margin-top: 16px;
}

.about-skills-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr);
  gap: 72px;
  align-items: center;
  padding: 96px max(32px, calc((100vw - 1120px) / 2));
  background: url("../media/About-us-Background.jpg") center / cover no-repeat;
}

.about-skills__copy h2 {
  margin: 0 0 28px;
  color: #333;
}

.about-skills__copy p {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.85;
}

.about-skill {
  margin: 0 0 34px;
}

.about-skill span {
  display: block;
  margin-bottom: 12px;
  color: #212121;
  font-family: Verdana, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.about-skill i {
  display: block;
  height: 8px;
  background: #9e2064;
}

.about-team-section {
  padding: 72px max(32px, calc((100vw - 1240px) / 2)) 86px;
  background: #f3f3f3;
}

.about-team-heading {
  max-width: 860px;
  margin: 0 auto 58px;
  text-align: center;
}

.about-team-heading h2 {
  margin: 0 0 16px;
}

.about-team-heading p {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
}

.about-team-heading span {
  color: #8fc640;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
}

.about-team-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #fff;
  text-align: center;
}

.about-team-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.about-team-card figcaption {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 12px;
  color: #9e2064;
  font-family: Verdana, sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.about-join-cta-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 56px 32px;
  text-align: center;
}

.about-join-cta-section h2 {
  max-width: 780px;
  margin: 0;
  color: #333;
  font-size: 26px;
  line-height: 1.35;
}

.about-footer-section {
  background: #212121;
}

@media (max-width: 1100px) {
  .about-team-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .about-founders-section,
  .about-skills-section {
    grid-template-columns: 1fr;
  }

  .about-team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .about-founders-section {
    width: calc(100% - 40px);
    padding: 56px 0;
  }

  .about-founders__copy h1 {
    font-size: 42px;
  }

  .about-skills-section,
  .about-team-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .about-join-cta-section {
    flex-direction: column;
  }
}
