
.banner {
      background-color: #C8102E; /* Red background */
      color: white;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 40px 60px;
    }
    .banner h2 {
      margin: 0;
      font-size: 22px;
      font-weight: bold;
    }
    .banner button {
      background: transparent;
      border: 2px solid white;
      color: white;
      padding: 12px 25px;
      font-size: 16px;
      font-weight: bold;
      border-radius: 4px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .banner button:hover {
      background: white;
      color: #C8102E;
    }

