/* HERO */
.hero-alt {
  background: url("assets/images/about.jpg") center/cover no-repeat;
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-alt__overlay {
  background: rgba(0, 40, 40, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-alt__title {
  font-size: 48px;
  color: #f0f4ed;
  margin-bottom: 15px;
}
.hero-alt__subtitle {
  font-size: 20px;
  color: #b2d8c2;
}

/* ABOUT ALT */
.about-alt {
  padding: 80px 20px;
  background: #fdfdf9;
}
.about-alt__wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.about-alt__text {
  flex: 1;
  font-size: 18px;
  line-height: 1.7;
}
.about-alt__text h2 {
  font-size: 36px;
  color: #2e6048;
  margin-bottom: 20px;
}
.about-alt__image {
  flex: 1;
}
.about-alt__image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* TEAM ALT */
.team-alt {
  background: #1b2a29;
  color: #faf3e0;
  padding: 80px 20px;
}
.team-alt__title {
  text-align: center;
  font-size: 34px;
  color: #b2d8c2;
  margin-bottom: 40px;
}
.team-alt__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.team-alt__member {
  background: #2e6048;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s;
}
.team-alt__member:hover {
  transform: translateY(-8px);
}
.team-alt__photo {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* VALUES ALT */
.values-alt {
  padding: 80px 20px;
  background: #faf3e0;
}
.values-alt__title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #2e6048;
}
.values-alt__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}
.values-alt__card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.values-alt__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.values-alt__card h3 {
  color: #2e6048;
  margin-bottom: 10px;
}
