
@media (max-width:768px){
    .nav-links{
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        background-color: #2d5a4d;
    }
   

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

   .hamburger {
    display: block;
   }

   .hero {
    flex-direction: column;
    text-align: center;
    padding-top:6rem ;
   }
   .hero-content h1{
    font-size: 2.5rem;
   }

   .buttons{
    justify-content: center;
   }
   .hero-content p {
    margin: 0 auto 2rem;
   }

 
}

@media (max-width:768px) {

    .products-content {
        flex-direction: column;
        align-items: center;
    }

    .section-content{
        text-align: center;
        flex: none;
        max-width: 600px;
        margin: 0 auto;
    }

    .products-grid {
     
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
         
    }

.product-image{
    
 height: 250px;
}
}

@media (max-width:768px) {

    .testimonial-content{

        font-size: 1rem;
    }
    .nav-button{
        width: 35px;
        height: 35px;
    }
}

