
  /* ABOUT PAGE */
.about-wrapper {
  background: #fffdfa;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
  color: #2f2f2f;
}

.about-container {
  max-width: 1200px;
  margin: auto;
}

/* INTRO */
.about-intro {
  text-align: center;
  margin-bottom: 70px;
}

.about-intro h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #2f4f2f;
}

.about-intro p {
  font-size: 18px;
  max-width: 850px;
  margin: auto;
  line-height: 1.8;
}

/* VALUES */
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin: 70px 0;
}

.value-box {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.value-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #6b8e23;
}

.value-box p {
  font-size: 15px;
  line-height: 1.6;
}

/* TEAM */
.team-section {
  margin-top: 90px;
}

.team-section h2 {
  font-size: 36px;
  margin-bottom: 50px;
  color: #2f4f2f;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.team-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 25px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  position: relative;
}

.team-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  margin-top: -80px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card p {
  font-size: 15px;
  line-height: 1.7;
  margin: 25px 0;
}

.team-name {
  font-weight: 600;
  font-size: 16px;
}
