.banner-container {
    padding: 2rem;
  }
  
  .banner {
    position: relative;
    width: 100%;
    height: 780px;
    background: url('../img/qendra-backround.jpg') center/cover no-repeat;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    z-index: 1;
    border-radius: 16px;
  }
  
  .text-container {
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInLeft 1s ease-in-out forwards;
    margin-left: 330px;
  }
  
  @keyframes fadeInLeft {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  #DJE,
  #NESËR {
    text-decoration: line-through;
    text-decoration-color: red;
  }
  
  .text-container h1 {
    font-size: 40px;
    margin-bottom: 10px;
  }
  
  .text-container h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .text-container button {
    margin-top: 20px;
    padding: 10px 30px;
    background-color: #ffffff;
    color: #00308F;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .text-container button:hover {
    background-color: #00308F;
    color: #ffffff;
  }
  
  @media (max-width: 768px) {
    .banner {
      height: 600px;
      border-radius: 0px;
      padding: 2rem;
    }
  
    .text-container {
      margin-left: 20px;
    }
  
    .text-container h1,
    .text-container h2 {
      font-size: 24px;
    }
  
    .text-container button {
      font-size: 14px;
      padding: 8px 24px;
    }
  
    .banner-container {
      padding: 0rem;
    }
  }