.about-section {
  background: #006842;
  padding: 80px 16px 72px;
}

.about-section-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-section-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  color: #ffffff;
}

.about-section-icon i {
  font-size: 40px;
}

.about-section-content {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.4fr);
  gap: 44px;
  align-items: center;
}

.about-section-text {
  font-family: 'Mersad', sans-serif;
  text-align: center;
}

.about-section-title {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
}

.about-section-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}

.about-section-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  object-position: center;
}

.about-goal-section {
  background: #f6f7f5;
  padding: 80px 16px 96px;
}

.about-goal-inner {
  max-width: 1360px;
  margin: 0 auto;
}

.about-profile {
  text-align: center;
}

.about-profile-name {
  margin: 0 0 14px 0;
  font-size: 28px;
  font-weight: 700;
  color: #102016;
}

.about-profile-photo {
  width: min(100%, 420px);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.about-profile-role {
  margin: 0 0 16px 0;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  color: #2f493c;
}

.about-goal-text {
  font-family: 'Mersad', sans-serif;
  max-width: 100%;
  margin: 0;
  text-align: left;
  align-self: center;
}

.about-goal-title {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  color: #102016;
}

.about-goal-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #38453e;
}

.about-goal-desc p {
  margin: 0 0 14px 0;
}

.about-goal-desc p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about-section-content {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .about-section-title {
    font-size: 24px;
  }

  .about-section-desc {
    font-size: 15px;
  }

  .about-goal-title {
    font-size: 22px;
    text-align: center;
  }

  .about-profile-name {
    font-size: 24px;
  }

  .about-profile-photo {
    width: min(100%, 360px);
  }

  .about-profile-role {
    font-size: 14px;
  }

  .about-goal-text {
    text-align: center;
  }

  .about-goal-desc {
    font-size: 14px;
    line-height: 1.65;
  }
}