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

body {
  font-family: "Poppins", sans-serif;
  color: #222;
  background-color: #ffffff;
  line-height: 1.6;
}

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

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

/* ------------------------------
   HEADER & NAVIGATION
------------------------------ */
.header {
  width: 100%;
  background: #ffffff;
  padding: 18px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  color: #2f6b32;
  text-decoration: none;
}

.logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

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

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 400;
  transition: 0.2s ease;
}

.nav a {
  position: relative;
  text-decoration: none;
  color: #333;
  font-weight: 400;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #2f6b32;
  transition: width 0.3s ease;
}

.nav a:hover {
  color: #2f6b32;
}

.nav a:hover::after {
  width: 100%;
}

.nav a.active {
  color: #2f6b32;
}

.nav a.active::after {
  width: 100%;
}

/* Mobile Menu Button */
.menu-btn {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

/* ------------------------------
   BUTTONS (shared)
------------------------------ */
.btn-primary {
  display: inline-block;
  background: #2f6b32;
  color: #fff;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s ease;
}

.btn-primary:hover {
  background: #255728;
}

.btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid #ffffff;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  background: transparent;
  transition: 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-small {
  padding: 8px 18px;
  font-size: 0.9rem;
}

/* ------------------------------
   GENERIC SECTIONS (shared)
------------------------------ */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 32px auto;
  color: #555;
}

/* ------------------------------
   FOOTER (shared)
------------------------------ */
.footer {
  margin-top: 60px;
  padding: 28px 0;
  background: #f7f7f7;
  text-align: center;
  color: #555;
  font-size: 0.95rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  padding: 24px 0;
}

.footer-col h4 {
  margin-bottom: 6px;
}

.footer-bottom {
  padding-bottom: 10px;
  text-align: center;
  font-size: 0.85rem;
  color: #777;
}

/* ------------------------------
   RESPONSIVE GLOBAL RULES
------------------------------ */

/* Tablet & Mobile */
@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    background: #ffffff;
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .nav.open {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .section {
    padding: 60px 0;
  }
}
