no body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f5f3ef;
  color: #222;
  line-height: 1.6;
}

nav {
  background: #1f2d24;
  padding: 16px;
  text-align: center;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 12px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

h1 {
  color: #1f2d24;
  font-size: 42px;
  margin-bottom: 10px;
}

h2 {
  color: #2f4a39;
  margin-top: 30px;
}

p {
  font-size: 18px;
  max-width: 900px;
}

a {
  color: #2f5f3f;
}

section,
main {
  max-width: 1000px;
  margin: auto;
  padding: 40px 22px;
}

button,
.button {
  display: inline-block;
  background: #2f5f3f;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.button:hover {
  background: #244b32;
}
.content-box {
  background: white;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.page-header {
    background:
    linear-gradient(rgba(20,20,20,0.45), rgba(20,20,20,0.45)),
    url("IMG_2846.jpeg");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    margin: 0;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

main {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
}
form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

label {
  font-weight: bold;
  margin-top: 10px;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
}

button[type="submit"] {
  background: #2f5f3f;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

button[type="submit"]:hover {
  background: #244b32;
}
.about-section {
  padding: 70px 20px;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
}

.about-intro {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 55px auto;
}

.about-intro h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #1f2d2b;
}

.about-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
}

.about-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 35px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.about-btn {
  background: #1f2d2b;
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.about-btn.secondary {
  background: #d7b56d;
  color: #1f2d2b;
}

.team-card {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
  padding: 35px;
  background: white;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.team-card.reverse {
  flex-direction: row-reverse;
}

.team-photo {
  flex: 0 0 220px;
  max-width: 220px;
}

.team-photo img {
  width: 220px;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

.team-photo.placeholder {
  height: 300px;
  background: #d9ddd6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-weight: 600;
}

.team-text h2 {
  font-size: 30px;
  margin-bottom: 5px;
  color: #1f2d2b;
}

.team-text h3 {
  font-size: 17px;
  margin-bottom: 20px;
  color: #6b6b6b;
}

.team-text p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
}

.approach-box {
  background: #1f2d2b;
  color: white;
  padding: 40px;
  border-radius: 14px;
  text-align: center;
}

.approach-box h2 {
  color: white;
}

@media (max-width: 768px) {

  .team-card,
  .team-card.reverse {
    flex-direction: column;
    text-align: center;
  }

  .team-photo {
    width: 100%;
    max-width: 320px;
  }

  .about-intro h1 {
    font-size: 32px;
  }
}
.about-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 22px;
}

.about-buttons {
  display: flex;
  gap: 18px;
  margin: 30px 0 40px;
  flex-wrap: wrap;
}

.about-btn {
  background: #1f2d24;
  color: white !important;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.about-btn.secondary {
  background: #d7b56d;
  color: #1f2d24 !important;
}

.team-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: white;
  padding: 28px;
  margin: 35px 0;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.10);
}

.team-card.reverse {
  flex-direction: row-reverse;
}

.team-photo {
  flex: 0 0 320px;
}

.team-photo img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.team-text {
  flex: 1;
}

.team-text h2 {
  font-size: 32px;
  color: #1f2d24;
  margin: 0 0 8px;
}

.team-text h3 {
  font-size: 18px;
  color: #555;
  margin: 0 0 18px;
}

.team-text p {
  font-size: 17px;
  line-height: 1.7;
}

.approach-box {
  background: #1f2d24;
  color: white;
  padding: 35px;
  border-radius: 14px;
  margin-top: 40px;
}

.approach-box h2 {
  color: white;
}

@media (max-width: 768px) {
  .team-card,
  .team-card.reverse {
    flex-direction: column;
    text-align: left;
  }

  .team-photo {
    flex: none;
    width: 100%;
  }

  .team-photo img {
    width: 100%;
    height: 320px;
  }
}
.logo {
  text-decoration: none;
  color: #dfe7df;
  font-size: 20px;
  font-weight: 700;
}
.logo {
  text-decoration: none;
  color: #1f2d24;
  font-size: 20px;
  font-weight: 700;
}
.logo-area {
  text-align: center;
  margin-bottom: 14px;
}

.logo {
  text-decoration: none;
  color: #1f2d24;
  font-size: 28px;
  font-weight: 700;
  display: inline-block;
}