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

body {
  font-family: 'Arial', sans-serif;
  background: #f2f2f2;
  color: #111;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.header {
  background: #fff;
  padding: 20px 0;
  border-bottom: 2px solid #ccc;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-weight: bold;
  color: #111;
}

.menu a {
  margin-left: 20px;
  text-decoration: none;
  color: #111;
  font-weight: bold;
}

.hero {
  padding: 60px 0;
  background: #e8e8e8;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-image img {
  max-width: 100%;
  border-radius: 10px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: #5d7751;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  margin-top: 20px;
}

.btn-light {
  background: #d8e5d1;
  color: #111;
}

.stats {
  background: #5d7751;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.stat {
  background: #4e6745;
  padding: 20px;
  border-radius: 8px;
  font-weight: bold;
}

.support {
  background: #fff;
  padding: 60px 0;
  text-align: center;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}

.service img {
  max-width: 100%;
  border-radius: 10px;
}

.methodology {
  background: #d8e5d1;
  padding: 60px 0;
  text-align: center;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.method {
  background: #c5d9bc;
  padding: 20px;
  border-radius: 8px;
  font-weight: bold;
}

.experience {
  background: #fff;
  padding: 60px 0;
}

.exp-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.exp-image img {
  max-width: 100%;
  border-radius: 10px;
}

.contact {
  background: #f2f2f2;
  padding: 60px 0;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.footer {
  background: #5d7751;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

.footer-nav a {
  margin: 0 10px;
  color: #fff;
  text-decoration: none;
  font-size: 0.9em;
}
