.bottom-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 40px;
    
    text-align: center;
  }

  .bottommenu-column {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .bottommenu-column h3 {
    margin-bottom: 15px;
    font-size: 20px;
  }

  .bottommenu-image {
    width: 100%;
    max-width: 180px;
    margin-bottom: 20px;
  }

  .bottommenu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .bottommenu-column ul li {
    margin-bottom: 10px;
  }

  .bottommenu-column ul li a {
   
    text-decoration: none;
    transition: color 0.3s ease;
  }

 
 .bottom-menu a,
.bottom-menu span,
.bottom-menu h3,
.bottom-menu li {
    color: inherit;
}
 
 
 

  /* Responsive */
  @media (max-width: 768px) {
    .bottom-menu {
      grid-template-columns: 1fr;
    }
  }