html {
    scroll-behavior: smooth;
  }
  
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    
    body {
    font-family: poppins, sans-serif;
    line-height: 1.6;
    }
    
    /* Header styles */
    header {
    background-color: white;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    
    .containerheader {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    }
    
    .logo {
    width: 230px;
    height: auto;
    }
    
    .nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    }
    
    .nav-link {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    margin: 0 20px;
    padding: 5px 0;
    position: relative;
    }
    
    .nav-link.active {
    color: #759934;
    }
    
    .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    border-radius: 20px;
    width: 100%;
    height: 3px;
    background-color: #759934;
    }
    
    .contact-btn {
    background-color: #415223;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 500;
    margin-left: 20px;
    }

/* Services */

.containerservices {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

section.services {
    background-color: #1a1a1a;
    padding: 30px 20px;
    text-align: center;

}
.services-grid {
    display: flex;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    flex-direction: column;
}

.service-card {
    background-color: #759934;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

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

.section-title h2{
    font-size: 36px;
    display: inline;
    color: #759934;
    margin-bottom: 20px;
}

.section-title p{
    color: white;
    margin-bottom: 20px;
}

.service-card p {
    font-size: 16px;
}

/* Estilos para el contenedor del icono */
.icon-container {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

/* Estilos para el icono dentro del contenedor */
.material-symbols-outlined {
    font-size: 70px;
    color: #8BAF5E;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* Footer styles */
/* Footer styles */
.footer {
  background-color: white;
  padding: 40px 60px 10px;
  font-family: 'Poppins', sans-serif;
  width: 100%;
  box-sizing: border-box;
}

.footer-container {
  display: grid;
  justify-content: center;
  justify-items: column;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-top {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-logo {
  flex: 1;
  min-width: 150px;
  max-width: 200px;
}

.footer-logo img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.footer-top h3 {
  font-size: 22px;
  margin: 10px 0;
  font-weight: 600;
}

.footer-logo p {
  font-size: 15px;
  color: white;
  line-height: 1;
}

.footer-content {
  display: flex;
  flex: 3;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
  color: black;
}

.footer-column p, .footer-column a {
  font-size: 14px;
  margin: 6px 0;
  line-height: 1.6;
  color: #1a1a1a;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #759934;
}

.footer h3 {
  color: #759934;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icon {
  width: 36px;
  height: 36px;
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon:hover {
  color: black;
}

.social-icon i {
  font-size: 16px;
  color: #759934;
}

.footer-bottom {
  position: relative;
  justify-content: center;
  text-align: center;
  color: #6c6c6c;
  font-size: 13px;
  flex-direction: column;
}

/* Sandwich Menu Styles */

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 100;
  }
  
  .menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
  }
  
  /* Menu Overlay */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 98;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }
  
  /* Responsive Styles */
  @media (max-width: 991px) {
    /* Show hamburger menu */
    .menu-toggle {
      display: flex;
    }
    
    /* Hide features box on small screens */
    .features-box-container {
      display: none;
    }
    
    /* Header adjustments */
    .containerheader {
      justify-content: space-between;
      align-items: center;
    }
    
    /* Mobile navigation menu */
    .nav-menu {
      position: fixed;
      top: 0;
      height: 100vh;
      background-color: white;
      flex-direction: column;
      align-items: flex-start;
      padding: 80px 20px 30px;
      box-shadow: -2px 0 10px rgba(0,0,0,0.1);
      transition: right 0.3s ease;
      z-index: 99;
    }
    
    .nav-menu.active {
      right: 0;
    }
    
    .nav-link {
      margin: 10px 0;
      width: 100%;
      padding: px 0;
    }
    
    .contact-btn {
      margin: 20px 0 0 0;
      width: 100%;
      text-align: center;
    }
    
    /* Hamburger to X animation */
    .menu-toggle.active span:first-child {
      transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }
    
    .menu-toggle.active span:last-child {
      transform: translateY(-9px) rotate(-45deg);
    }
  }
  
  /* Additional responsive adjustments */
  @media (max-width: 768px) {
    /* Hero section */
  }
  
  /* Small screens (up to 576px) */
  @media (max-width: 576px) {
    .logo {
      width: 180px;
    }
    
    .nav-menu {
      width: 85%;
    }
  }
  
  /* Responsive Media Queries for All Standard Sizes */
  
  /* Base styles are already defined for desktop (your original design at 1336px) */
  
  /* Large Desktop (1400px and above) */
  /* Desktop (1200px to 1399px) - Your baseline design */
  /* Tablet Landscape / Small Desktop (992px to 1199px) */
  /* Tablet Portrait (768px to 991px) */
  /* Mobile Large (577px to 767px) */
  /* Mobile Small (up to 576px) */
 


  /* Improves spacing for mobile menu navigation links */
  @media (max-width: 991px) {
    .nav-menu li {
      margin: 0px 0;
      width: 80%;
    }
    
    .nav-link {
      padding: 0px 0;
      margin: 0px 0;
      font-size: 22px;
      display: block;
    }
    
    .contact-btn {
      margin-top: 0px;
      padding: 16px 20px;
      font-size: 20px;
    }
    
    /* Vertical spacing between menu items */
    .nav-menu {
      padding: 80px 0px 0px;
      gap: 40px;
      align-items: center;
    }
  }