
  .carousel {
    position: relative;
    width: 600px;
    max-width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    background: #fff;
  }

  .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .slide {
    min-width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
  }

  .slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
  }

  .content-slide {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    text-align: center;
  }

  .content-wrapper {
    max-width: 100%;
  }

  .content-wrapper h2 {
    margin: 0 0 20px 0;
    font-size: 2.2em;
    font-weight: bold;
  }

  .content-wrapper p {
    margin: 0 0 25px 0;
    font-size: 1.1em;
    line-height: 1.6;
    opacity: 0.9;
  }

  .features {
    text-align: left;
    margin: 25px 0;
  }

  .features h3 {
    margin: 0 0 15px 0;
    font-size: 1.4em;
    text-align: center;
  }

  .features ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .features li {
    padding: 8px 0;
    font-size: 1em;
  }

  .cta-button {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.6);
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 20px;
  }

  .cta-button:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.9);
    transform: translateY(-2px);
  }

  .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.6);
    border: none;
    font-size: 24px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 50%;
    user-select: none;
  }

  .nav-btn:hover {
    background: rgba(255,255,255,0.9);
  }

  .prev {
    left: 10px;
  }

  .next {
    right: 10px;
  }

  .dots {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
  }

  .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 6px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    cursor: pointer;
  }

  .dot.active {
    background: #fff;
  }
