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

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #2b2b2b;
  line-height: 1.6;
  background-color: #ffffff;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navbar */
.navbar {
  background-color: #0b5d3b;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

.logo {
  color: #ffffff;
  font-size: 22px;
  font-weight: bold;
}

.logo span {
  color: #7ee8a5;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: #ffffff;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #7ee8a5;
}

#menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 26px;
  cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #0b5d3b, #14894f);
  color: #ffffff;
  padding: 120px 0 100px;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, background-color 0.2s;
}

.btn-primary {
  background-color: #7ee8a5;
  color: #0b5d3b;
}

.btn-primary:hover {
  background-color: #5fd88b;
  transform: translateY(-2px);
}

/* Sections */
.section {
  padding: 80px 0;
}

.section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #0b5d3b;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background-color: #f6fbf8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  color: #0b5d3b;
  margin-bottom: 12px;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 12px;
}

.testimonial span {
  font-weight: bold;
  color: #0b5d3b;
}

/* About */
.about {
  background-color: #f0f8f4;
}

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

.about-list {
  list-style: none;
  margin-top: 20px;
  text-align: left;
  display: inline-block;
}

.about-list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
}

.about-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #0b5d3b;
  font-weight: bold;
}

/* Contact */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2 {
  text-align: left;
}

.contact-info p {
  margin-bottom: 12px;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.social-links a {
  background-color: #0b5d3b;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.social-links a:hover {
  background-color: #14894f;
}

.contact-form {
  background-color: #f6fbf8;
  padding: 30px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 6px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 18px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
}

.form-status {
  margin-top: 12px;
  font-weight: 500;
  color: #0b5d3b;
}

/* Policy Page */
.policy h1 {
  color: #0b5d3b;
  margin-bottom: 10px;
}

.policy h2 {
  text-align: left;
  margin-top: 30px;
  font-size: 22px;
}

.policy p {
  margin-bottom: 12px;
}

/* Footer */
.footer {
  background-color: #0b5d3b;
  color: #ffffff;
  padding: 30px 0;
  text-align: center;
}

.footer a {
  color: #7ee8a5;
}

.footer-content p {
  margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background-color: #0b5d3b;
    flex-direction: column;
    padding: 20px;
  }

  .nav-links.active {
    display: flex;
  }

  #menu-toggle {
    display: block;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 30px;
  }
}
