.about-content {
  padding: 6rem 0;
  background: transparent;
  position: relative;
  z-index: 2;
}

/* About Page Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin: 4rem 0;
}

.value-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              background-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.value-card:hover {
  background: rgba(90, 166, 120, 0.07);
  border-color: rgba(90, 166, 120, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.value-icon {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5AA678;
}

.value-card h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
}

.value-card p {
  font-size: 1rem;
  opacity: 0.8;
  line-height: 1.6;
}

.about-section {
  margin-bottom: 6rem;
}

.about-section h2 {
  font-size: clamp(1.4rem, 2.5vw + 0.6rem, 2rem);
  color: #5AA678;
  margin-bottom: 2rem;
}

.about-section p {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.team-section {
  background: rgba(90, 166, 120, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 3rem;
  border-radius: 5px;
  margin-top: 4rem;
}

.team-photo-wrapper {
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
  height: 420px;
}

.team-photo {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  /* --- About --- */
  .about-content {
    padding: 2.5rem 0;
  }

  .about-section {
    margin-bottom: 3rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .team-section {
    padding: 1.8rem 1.2rem;
  }

  .team-photo-wrapper {
    height: 220px;
  }
}

.value-icon svg {
  width: 1.6rem;
  height: 1.6rem;
  stroke-width: 1.5;
}

