* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Trebuchet MS", Arial, sans-serif;
  background-color: #f7fcf7;
  color: #4f6655;
  line-height: 1.6;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  background-color: #e9efe7;
  flex-wrap: wrap;
}

.logo a {
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  color: #6f806f;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-links li a {
  text-decoration: none;
  font-size: 1.1rem;
  color: #6f806f;
  white-space: nowrap;
}

.hero {
  min-height: 78vh;
  background-image:
    linear-gradient(rgba(111, 143, 119, 0.18), rgba(111, 143, 119, 0.18)),
    url("images/team.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.hero-box {
  background: rgba(252, 255, 252, 0.9);
  padding: 42px;
  border-radius: 24px;
  max-width: 700px;
  box-shadow: 0 10px 28px rgba(138, 173, 144, 0.12);
}

.hero-box h1 {
  font-size: 3rem;
  color: #5f7d67;
  margin-bottom: 14px;
  font-weight: 600;
}

.hero-box p {
  color: #73907a;
  font-size: 1.05rem;
  margin-bottom: 22px;
}

.button {
  display: inline-block;
  text-decoration: none;
  background: #b7d8bc;
  color: #4f6655;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.button:visited {
  color: #4f6655;
}

.button:hover {
  background: #a8cfae;
  transform: translateY(-1px);
}

.page-header {
  text-align: center;
  padding: 72px 24px 26px;
}

.page-header h1 {
  font-size: 2.5rem;
  color: #5f7d67;
  margin-bottom: 12px;
  font-weight: 600;
}

.page-header p {
  max-width: 800px;
  margin: 0 auto;
  color: #7f9984;
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.section h2 {
  color: #627d69;
  margin-bottom: 20px;
  font-weight: 600;
}

.two-column {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
}

.placeholder {
  width: 100%;
  min-height: 260px;
  border: 2px dashed #c0d8c3;
  background: #edf7ee;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8aa18f;
  text-align: center;
  padding: 20px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.team-card {
  background: #ffffff;
  border: 1px solid #e0eee1;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 6px 16px rgba(138, 173, 144, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(138, 173, 144, 0.14);
}

.team-card h3 {
  color: #6a876f;
  margin-bottom: 6px;
  font-weight: 600;
}

.team-card p {
  color: #78907d;
}

.team-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  margin-bottom: 14px;
  display: block;
}

.split-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 24px 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.split-section.reverse .split-image-wrap {
  order: 1;
}

.split-section.reverse .split-text {
  order: 2;
}

.split-text h2 {
  font-size: 2rem;
  color: #627d69;
  margin-bottom: 16px;
  font-weight: 600;
}

.split-text p {
  color: #78907d;
  margin-bottom: 16px;
}

.split-image-wrap {
  width: 100%;
}

.split-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  box-shadow: 0 8px 20px rgba(138, 173, 144, 0.12);
  border: 1px solid #e0eee1;
  background: #edf7ee;
}

img {
  max-width: 100%;
  display: block;
}

.footer {
  text-align: center;
  padding: 24px;
  background: #e3f1e4;
  color: #718a77;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    padding: 18px 20px;
  }

  .nav-links {
    justify-content: center;
  }

  .hero-box h1 {
    font-size: 2.2rem;
  }

  .two-column,
  .split-section {
    grid-template-columns: 1fr;
  }

  .split-section.reverse .split-image-wrap,
  .split-section.reverse .split-text {
    order: unset;
  }

  .split-image {
    height: auto;
  }
}
.hero {
  min-height: 78vh;
  background-image: url("images/team.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}
.process-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.process-card {
  background: #ffffff;
  border: 1px solid #e0eee1;
  border-radius: 18px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(138, 173, 144, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(138, 173, 144, 0.14);
}

.process-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 10px;
}
.split-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 40px;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
}

.split-text h2 {
  font-size: 3rem;
  color: #6f806f;
  margin-bottom: 20px;
}

.split-text p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #6f806f;
  margin-bottom: 18px;
}

.split-image-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.split-image {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 0 20px;
  }

  .split-text h2 {
    font-size: 2.2rem;
  }

  .split-text p {
    font-size: 1.05rem;
  }
}

.process-card p {
  font-size: 0.95rem;
  color: #6f8f77;
}
