/* mobile-view.css */
@media (max-width: 768px) {
    .hero {
      height: 70vh;
      padding: 60px 20px;
    }
  
    .hero h1 {
      font-size: 2.5rem;
    }
  
    .hero p {
      font-size: 1rem;
    }
  
    .menu-btn {
      display: flex;
      flex-direction: column;
      cursor: pointer;
      padding: 10px;
    }
  
    .menu-bar {
      width: 30px;
      height: 4px;
      background-color: white;
      margin: 5px 0;
      transition: 0.3s;
    }
  
    .buttons {
      display: none;
      flex-direction: column;
      width: 100%;
      position: absolute;
      top: 55px;
      left: 0;
      background-color: #1c1c1c;
      text-align: center;
    }
  
    .buttons.show {
      display: flex;
    }
  
    footer {
      display: none;
    }
  }