







* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
    background: #f7faf8;
    color: #1f2933;
    line-height: 1.6;
}
nav {
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  z-index: 1;
}
nav .logo {
  display: flex;
  align-items: center;
}
nav .logo img {
  height: 25px;
  width: auto;
  margin-right: 10px;
}
nav .logo h1 {
  font-size: 1.5rem;
  background: #2A7A44;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav ul {
  list-style: none;
  display: flex;
}
nav ul li {
  margin-left: 1.5rem;
}
nav ul li a {
  text-decoration: none;
  color: #000;
  font-size: 95%;
  font-weight: 400;
  padding: 4px 8px;
  border-radius: 5px;
}

nav ul li a:hover {
  background-color: #f5f5f5;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger .line {
  width: 25px;
  height: 1px;
  background-color: #1f1f1f;
  display: block;
  margin: 7px auto;
  transition: all 0.3s ease-in-out;
}
.hamburger-active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
  transform: rotate(45deg);
}

.hamburger-active .line:nth-child(2) {
  width: 0px;
}

.hamburger-active .line:nth-child(1),
.hamburger-active .line:nth-child(3) {
  transition-delay: 0.3s;
}

.hamburger-active .line:nth-child(1) {
  transform: translateY(12px);
}

.hamburger-active .line:nth-child(3) {
  transform: translateY(-5px) rotate(90deg);
}
.menubar {
  position: absolute;
  top: 0;
  left: -60%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 60%;
  height: 100vh;
  padding: 20% 0;
  background: rgba(255, 255, 255);
  transition: all 0.5s ease-in;
  z-index: 2;
}
.active {
  left: 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.menubar ul {
  padding: 0;
  list-style: none;
}
.menubar ul li {
  margin-bottom: 32px;
}

.menubar ul li a {
  text-decoration: none;
  color: #000;
  font-size: 95%;
  font-weight: 400;
  padding: 5px 10px;
  border-radius: 5px;
}

.menubar ul li a:hover {
  background-color: #f5f5f5;
}
@media screen and (max-width: 790px) {
  .hamburger {
    display: block;
  }
  nav ul {
    display: none;
  }
}


.button-container{
    
    font-family: Arial, Helvetica, sans-serif;
    background-color: #d6f5dc86;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    padding-top: 0px;
    
    height: 120px;
  
   
}


.cta1-button {
   background: rgba(255, 255, 255, 0.25);
  color: #66B88B;
  font-weight: 600;
  font-size: 1rem;
  max-width: 100px;
  max-width: 250px;
  padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 20px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(8, 81, 17, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta1-button:hover {
  background: rgba(255, 255, 255, 0.35);
  color: #2e7d32;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}




.info-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px 100px;
    text-align: center;
}

.info-section h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 16px;
}

.subtitle {
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 48px;
}

/* ---------- CARDS ---------- */

.card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 32px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    text-align: left;
}

.card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.card p {
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.7;
}

.text-card h3 {
    margin-top: 24px;
}

.text-card h3:first-child {
    margin-top: 0;
}

/* ---------- FORM ---------- */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #5fa77a;
    box-shadow: 0 0 0 3px rgba(95, 167, 122, 0.15);
}

.contact-form button {
    margin-top: 8px;
    align-self: flex-start;
    padding: 14px 28px;
    border-radius: 999px;
    border: none;
    background: #5fa77a;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.contact-form button:hover {
    opacity: 0.95;
}

/* ---------- MOBILE ---------- */

@media (max-width: 600px) {
    .info-section h1 {
        font-size: 34px;
    }

    .card {
        padding: 28px;
        border-radius: 20px;
    }
}
























