     /* Banner section */
  .banner-section {
    position: relative;
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
  }

  /* Overlay for better text visibility */
  .banner-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: rgba(0,0,0,0.4);*/
    z-index: 1;
  }

  /* Banner content */
  .banner-content {
    position: relative;
    z-index: 2;
    max-width: 90%;
    padding: 20px;
  }

  .banner-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
  }

  .banner-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .banner-content a {
    text-decoration: none;
    background-color: #ff6600;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
  }

  .banner-content a:hover {
    background-color: #e65c00;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .banner-section {
      height: 20vh;
    }
    .banner-content h1 {
      font-size: 2rem;
    }
    .banner-content p {
      font-size: 1rem;
    }
  }

  @media (max-width: 480px) {
    .banner-section {
      height: 20vh;
    }
    .banner-content h1 {
      font-size: 1.5rem;
    }
    .banner-content p {
      font-size: 0.9rem;
    }
  }
