.inner-body {
  margin-top: 36px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(251,191,36,0.08), 0 4px 16px rgba(0,0,0,0.06);
  padding: 20px;
}

.body {
  width: 100%;
  margin-bottom: 50px;
}

.purpose-goal-row,
.goal-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 48px;
  margin: 36px 0 48px;
}

.goal-row {
  flex-direction: row-reverse;
}

.image-wrapper {
  flex: 1 1 320px;
  min-width: 200px;
  display: flex;
  justify-content: center;
}

.goal-img {
  object-fit: cover;
  max-width: 320px;
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 6px 24px rgba(251,191,36,0.13);
}

.section-title {
  font-size: 2.1rem;
  color: #232526;
  margin-bottom: 12px;
}

.paragraph {
  max-width: 700px;
  font-size: 1.18rem;
  text-align: center;
  color: #444;
  line-height: 1.7;
}

.vision-text {
  max-width: 700px;
  margin: 0 auto 32px auto;
  font-size: 1.15rem;
  text-align: center;
  color: #444;
  line-height: 1.7;
}

.highlight {
  color: #a87903;
  font-weight: 600;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .purpose-goal-row,
  .goal-row {
    flex-direction: column !important;
    gap: 0px !important;
    text-align: center;
  }

  .purpose-goal-row > div,
  .goal-row > div {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .goal-img {
    max-width: 90vw !important;
    margin: 0 auto !important;
  }

  .team-list {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }
}

@media (max-width: 600px) {
  .team-list {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .inner-body {
    padding: 10px 2px !important;
    border-radius: 14px !important;
  }
}

.team-list > div:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(251, 191, 36, 0.18), 0 4px 16px rgba(0, 0, 0, 0.10);
}