body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #fff;
  scroll-behavior: smooth;
  background-color: #1e2f1e;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  background: #5c3a21;
  display: flex;
  align-items: center;
  padding: 10px 30px;
  z-index: 100;
}

.navbar img {
  height: 50px;
  margin-right: 30px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
}

.navbar a {
  color: #f0e6d2;
  text-decoration: none;
  font-weight: bold;
}

.navbar a:hover {
  color: #d9c6a3;
}

/* HERO */
.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 60px 30px;
  gap: 40px;
  background: #2a4d2a;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.hero-contact a {
  color: #d1f0d1;
  font-weight: bold;
  text-decoration: none;
}

.hero-contact a:hover {
  color: #a3d9a3;
}

.hero-video {
  flex: 1;
  min-width: 280px;
}

.hero-video iframe {
  max-width: 100%;
  height: 315px;
  border-radius: 8px;
  border: 3px solid #184d18;
}

/* EXPERIENCE */
.experience {
  background: #2a4d2a;
  text-align: center;
  padding: 60px 20px;
}

.experience h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.experience-text {
  font-size: 1.3em;
  line-height: 1.8;
  max-width: 1000px;
  margin: 0 auto;
}

/* SERVICES */
.service {
  display: flex;
  align-items: center;
  padding: 50px 30px;
  gap: 30px;
  background: #1e2f1e;
  flex-wrap: wrap;
}

.service.alt {
  background: #2a4d2a;
}

.service-text {
  flex: 1;
}

.service h2 {
  color: #a3d9a3;
  margin-bottom: 15px;
}

.service p,
.service li {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 12px;
}

.service ul {
  padding-left: 20px;
}

.service-img {
  width: 35%;
  max-width: 400px;
  min-width: 220px;
  height: auto;
  border-radius: 8px;
  border: 2px solid #184d18;
}

/* CONTACT */
.contact {
  background: #2a4d2a;
  color: #e0f0e0;
  text-align: center;
  padding: 60px 20px;
}

.contact h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
}

.contact a {
  color: #d1f0d1;
  text-decoration: none;
  font-weight: bold;
}

.contact a:hover {
  color: #a3d9a3;
}

/* FOOTER */
footer {
  background: #1e2f1e;
  color: #d1f0d1;
  text-align: center;
  padding: 15px;
  font-weight: bold;
}

/* RESPONSIVE IMAGES */
@media (max-width: 1024px) {
  .service-img {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .service {
    flex-direction: column;
  }

  .service-img {
    width: 100%;
    max-width: 100%;
  }

  .hero {
    flex-direction: column;
  }

  .hero-video iframe {
    height: 250px;
  }
}
