  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  body {
      background-color: #f8f9fa;
      color: #333;
      line-height: 1.6;
  }

  .banner-section {
      height: 100vh;
      position: relative;
      overflow: hidden;
  }

  .banner-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.7);
      transition: transform 8s ease;
  }

  .banner-section:hover .banner-image {
      transform: scale(1.05);
  }

  .banner-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(26, 53, 93, 0.7) 0%, rgba(44, 128, 185, 0.5) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .banner-content {
      text-align: center;
      color: white;
      max-width: 800px;
      padding: 0 10px;
      z-index: 2;
  }

  .banner-subtitle {
      font-size: 1.2rem;
      font-weight: 500;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 20px;
      display: block;
      opacity: 0;
      animation: fadeInUp 0.8s ease 0.2s forwards;
  }

  .banner-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 25px;
      line-height: 1.2;
      opacity: 0;
      animation: fadeInUp 0.8s ease 0.4s forwards;
  }

  .banner-description {
      font-size: 1.3rem;
      margin-bottom: 35px;
      opacity: 0;
      animation: fadeInUp 0.8s ease 0.6s forwards;
  }

  .banner-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      opacity: 0;
      animation: fadeInUp 0.8s ease 0.8s forwards;
  }

  .btn {
      display: inline-block;
      padding: 14px 35px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
  }

  .btn-primary {
      background: white;
      color: #1a5f9e;
      box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
  }

  .btn-primary:hover {
      background: #f0f0f0;
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
      color: #d01341;
      border: 5px solid #1a5f9e;
  }

  .btn-secondary {
      background: transparent;
      color: white;
      border: 2px solid white;
  }

  .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-3px);
      border: 2px solid #d01341;
  }

  .banner-scroll-indicator {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      color: white;
      font-size: 1.5rem;
      animation: bounce 2s infinite;
  }

  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @keyframes bounce {

      0%,
      20%,
      50%,
      80%,
      100% {
          transform: translateY(0) translateX(-50%);
      }

      40% {
          transform: translateY(-10px) translateX(-50%);
      }

      60% {
          transform: translateY(-5px) translateX(-50%);
      }
  }

  .banner-stats {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      padding: 20px 0;
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
  }

  .stat-item {
      text-align: center;
      padding: 10px 20px;
  }

  .stat-number {
      font-size: 1.8rem;
      font-weight: 700;
      color: #1a365d;
      display: block;
  }

  .stat-label {
      font-size: 0.9rem;
      color: #555;
      text-transform: uppercase;
      letter-spacing: 1px;
  }

  @media (max-width: 768px) {
      .banner-title {
          font-size: 2.5rem;
      }

      .banner-description {
          font-size: 1.1rem;
      }

      .banner-buttons {
          flex-direction: column;
          align-items: center;
      }

      .btn {
          width: 200px;
          text-align: center;
      }

      .banner-stats {
          padding: 15px 0;
      }

      .stat-item {
          padding: 5px 10px;
      }

      .stat-number {
          font-size: 1.5rem;
      }
  }

  @media (max-width: 480px) {
      .banner-section {
          display: none;
      }

  }