  .hero-section {
      margin-top: 80px;
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      height: 500px;
  }

  .slideshow-container {
      position: relative;
      height: 100%;
  }

  .slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      display: flex;
      align-items: center;
      padding: 0 60px;
      color: white;
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  }

  .slide.active {
      opacity: 1;
  }

  .slide-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
  }

  .slide-content h2 {
      font-size: 42px;
      margin-bottom: 15px;
  }

  .slide-content p {
      font-size: 18px;
      margin-bottom: 20px;
      max-width: 600px;
  }

  .slide-controls {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
  }

  .slide-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.5);
      margin: 0 8px;
      cursor: pointer;
      transition: background-color 0.3s;
  }

  .slide-dot.active {
      background-color: white;
  }
