 * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: Arial, sans-serif;
        background-color: #f5f5f5;
        padding: 20px;
      }

      header {
        text-align: center;
        margin-bottom: 30px;
      }

      h1 {
        color: #333;
        margin-bottom: 10px;
      }

      section {
        border-top: 1px solid #ddd;
        width: 100%;
        height: 80vh;
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .slider {
        position: relative;
        width: 80%;
        height: 90%;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      }

      .slide {
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        transition: transform 1s;
        display: flex;
        justify-content: center;
        align-items: center;
      }

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      button.slider-btn {
        font-size: 20px;
        padding: 10px;
        position: absolute;
        top: 50%;
        z-index: 10;
        border: none;
        background: rgba(255, 255, 255, 0.7);
        font-family: inherit;
        color: #333;
        border-radius: 50%;
        height: 50px;
        width: 50px;
        cursor: pointer;
        transform: translateY(-50%);
        transition: background-color 0.3s;
      }

      button.slider-btn:hover {
        background: rgba(255, 255, 255, 0.9);
      }

      .btn--left {
        left: 20px;
      }

      .btn--right {
        right: 20px;
      }

      .dots {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
      }

      .dots__dot {
        border: none;
        background-color: rgba(255, 255, 255, 0.7);
        opacity: 0.7;
        height: 12px;
        width: 12px;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s;
      }

      .dots__dot--active {
        background-color: #fff;
        opacity: 1;
      }

      .dots__dot:hover {
        transform: scale(1.2);
      }