.banner {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .banner-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
  }
  
  .banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 15px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
  }
  
  .banner-title {
    font-size: 2em;
    margin: 0;
  }
  
  .banner-txt {
    font-size: 1.1em;
  }
  
  .banner-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background: #ff6600;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  .banner-link:hover {
    background: #e65c00;
  }
  