:root {
  --accent: #2d6a4f;
  --accent-hover: #40916c;
  --background: #f9f9f9;
  --header-bg: #ffffff;
  --text-dark: #1b4332;
  --text-light: #6c757d;
  --border-light: #e0e0e0;
  --footer-accent: #b7e4c7;
  --font-primary: 'Inter', 'Segoe UI', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --radius: 12px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-primary);
  background-color: var(--background);
  color: var(--text-dark);
  line-height: 1.6;
}

.wrapper-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Headings */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5em;
}

h1 { font-size: 32px; }
h2 { font-size: 24px; }
h3 { font-size: 18px; }

p {
  font-size: 16px;
  color: var(--text-light);
}

a {
  text-decoration: none;
  color: var(--accent);
  transition: color 0.3s ease;
  cursor: pointer;
}

a:hover {
  color: var(--accent-hover);
}

/* HEADER */
.header-main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background-color: var(--header-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
}

.header-main-logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.header-main-logo img {
  max-height: 48px;
  height: auto;
  display: block;
}

.header-main-nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

.header-main-nav li a {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  letter-spacing: 0.2px;
}

.header-main-nav li a:hover {
  background-color: var(--accent-hover);
  color: #fff;
}

.header-main-sm {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-main-sb {
  margin-left: 20px;
}

.header-main-sb button {
  background-color: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.header-main-sb button:hover {
  background-color: var(--accent-hover);
}

.hamburger {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--accent);
}

.nav-menu {
  display: flex;
  gap: 20px;
}

/* Announcement Bar */
.header-quote {
  width: 100%;
  margin-top: 80px;
  background-color: var(--accent);
  color: #fff;
  text-align: center;
  padding: 8px;
}

.header-quote h3 {
  color: #fff;
  margin: 0 auto;
  font-size: 16px;
}

/* MOBILE */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .header-main {
    height: 80px;
    padding: 15px;
    margin: 0 auto;
  }

  .header-main-sm {
    display: none;
  }

  .header-main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(45,106,79,.95);
    backdrop-filter: blur(4px);
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
    overflow: hidden;
    transform: translateY(-8px) scaleY(0.96);
    opacity: 0;
    pointer-events: none;
    max-height: 0;
    transition: transform .28s ease, opacity .28s ease, max-height .3s ease;
    box-shadow: 0 10px 24px rgba(0,0,0,.15);
  }

  .header-main-nav.open {
    transform: translateY(0) scaleY(1);
    opacity: 1;
    pointer-events: auto;
    max-height: 70vh;
  }

  .header-main-nav ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
    list-style: none;
    padding: 16px 20px;
    margin: 0;
    align-items: center;
  }

  .header-main-nav ul li a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
  }

  body.no-scroll {
    overflow: hidden;
  }
}

/* FOOTER */
.footer-main {
  width: 100%;
  padding: 60px 0;
  background-color: var(--text-dark);
  color: white;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.footer-main a {
  color: var(--footer-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-main a:hover {
  text-decoration: underline;
}

.footer-main .wrapper-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
}

.footer-contact ul {
  flex: 1 1 200px;
  min-width: 200px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact ul li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 24px;
  color: white;
}

.footer-contact ul li:first-child {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: var(--footer-accent);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  font-size: 14px;
  opacity: 0.7;
}



  /* FOOTER MOBILE */
@media (max-width: 768px) {
  .footer-main {
    padding: 28px 16px;
    text-align: center;
  }

  .footer-main .wrapper-main {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .footer-contact {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }

  .footer-contact ul {
    width: 100%;
    max-width: 320px;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    flex: unset;
  }

  .footer-contact ul:first-child {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 18px;
    max-width: 100%;
  }

  .footer-contact ul:first-child li:first-child {
    width: 100%;
    margin-bottom: 6px;
  }

  .footer-contact ul li {
    font-size: 14px;
    line-height: 1.5;
    color: white;
    margin-bottom: 6px;
  }

  .footer-contact ul li:first-child {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: none;
    color: var(--footer-accent);
  }

  .footer-contact ul:last-child li:last-child {
    max-width: 290px;
    margin: 0 auto;
  }

  .copyright {
    font-size: 12px;
    padding-top: 12px;
    text-align: center;
    opacity: 0.75;
  }

  .footer-contact ul:nth-child(3) {
  display: none;
  }
}