:root {
  --primary-green: #2d5a3d;
  --secondary-green: #4a7c59;
  --light-green: #6ba76f;
  --accent-green: #8bc34a;
  --earth-brown: #8d6e63;
  --sky-blue: #81c784;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --bg-light: #f8f9fa;
  --card-shadow: 0 8px 25px rgba(45, 90, 61, 0.15);
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

.hero-section {
  background: var(--bg-light);
  padding: 60px 0 40px;
  color: var(--text-dark);
}

.hero-section h1 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 15px;
}

.hero-section p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.about-intro {
  background: white;
  padding: 30px 0;
  position: relative;
}

.about-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(45, 90, 61, 0.1);
}

.about-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid var(--accent-green);
}

.team-section {
  background: var(--bg-light);
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 1.8rem;
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 10px;
}

.section-title p {
  color: var(--text-light);
  font-size: 1rem;
  margin: 0;
}

.member-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(45, 90, 61, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.member-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(45, 90, 61, 0.2);
}

.member-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 20px;
  border: 3px solid var(--accent-green);
  flex-shrink: 0;
}

.board-photo {
  width: 90px;
  height: 100px;
  margin-right: 20px;
  border: 2px solid var(--accent-green);
}

.member-initials {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-green), var(--light-green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-right: 20px;
  flex-shrink: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.member-info h4 {
  color: var(--primary-green);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.member-info .position {
  color: var(--earth-brown);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 12px;
  display: inline-block;
  background: rgba(139, 195, 74, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
}

.member-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  font-style: italic;
  margin: 0;
  line-height: 1.5;
}

.stats-section {
  background: var(--primary-green);
  color: white;
  padding: 60px 0;
  margin: 80px 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-green);
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-top: 10px;
}

.values-section {
  background: white;
  padding: 40px 0;
}

.value-item {
  text-align: center;
  padding: 20px 15px;
  border-radius: 10px;
  background: rgba(139, 195, 74, 0.05);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.value-item:hover {
  background: rgba(139, 195, 74, 0.1);
  transform: translateY(-2px);
}

.value-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.3rem;
  color: white;
}

.advisory-section {
  background: white;
  padding: 60px 0;
}

.board-section {
  background: var(--bg-light);
  padding: 60px 0;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0 30px;
  }

  .hero-section h1 {
    font-size: 1.6rem;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

  .about-card {
    padding: 25px 20px;
  }

  .member-photo,
  .board-photo,
  .member-initials {
    width: 60px;
    height: 60px;
    margin-right: 15px;
  }

  .member-initials {
    font-size: 1.4rem;
  }
}
