* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: hsl(20, 20%, 98%);
    color: hsl(220, 15%, 20%);
  }

  .carousel-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #eeeeee;
  }

  .carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* height: 70%; */
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: red; */
  }

  .carousel-icon{
    background-color: #0c54a0 !important;
    font-size: 1.25rem;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 2;
  }

  .slide-content {
    position: absolute;
    left: 4%;
    top: 0%;
    /* transform: translateY(-50%); */
    z-index: 10;
    max-width: 40%;
    padding: 3rem 0;
    border-radius: 0.75rem;
  }

  .slide-content h1 {
    /* font-size: 3.5rem; */
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    padding-bottom: 0 !important;
  }

  .slide-content p {
    font-size: 1.25rem;
    color: hsl(0, 0%, 10%);
    margin: 0;
    line-height: 1.7;
    opacity: 0.95;
  }

  .carousel-slide li{
    font-size: 1.25rem !important;
  }

  .slide-image {
    position: absolute;
    right: 8%;
    top: 0;
    /* width: 60%; */
    height: 100%;
    object-fit: cover;
    z-index: -1;
    object-position: center;
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
  }

  .carousel-indicators {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 15;
  }

  .indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: hsl(220, 15%, 20%, 0.3);
    border: 2px solid hsl(0, 0%, 100%, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .indicator-dot:hover {
    background: hsl(0, 0%, 100%, 0.6);
    transform: scale(1.2);
  }

  .indicator-dot.active {
    background: hsl(0, 0%, 100%);
    transform: scale(1.3);
    box-shadow: 0 0 15px hsl(15, 85%, 60%, 0.6);
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .slide-content {
      left: 5%;
      right: 5%;
      max-width: none;
      padding: 2rem;
    }

    .slide-content h1 {
      font-size: 2rem;
    }

    .slide-content p {
      font-size: 1rem;
    }

    .slide-image {
      width: 100%;
      opacity: 0.3;
      mask-image: none;
      -webkit-mask-image: none;
    }
  }