    body {
      margin: 0;
      padding: 0;
      font-family: "Poppins", serif;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      background-color: #b3d9dc;
    }

    .container {
      width: 100%;
      max-width: 65%;
      background: white;
      border-radius: 30px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      text-align: center;
      padding: 28px;
      position: relative;
    }

    .container h2 {
      font-size: 30px;
      color: #91D7E2;
      margin-bottom: 30px;
    }

    .slider {
      display: flex;
      gap: 20px;
      overflow: hidden;
      justify-content: center;
      align-items: center;
    }

    .slider-item {
     min-width: 266px;
    height: 270px;
    display: flex
;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      transition: transform 0.3s ease-in-out;
      cursor: pointer;
      margin-bottom: 20px;
      margin-top: 20px;
    }

    .slider-item.active {
      transform: scale(1.1);
      border: 2px solid #8fc1c659;
      background-color: #f2f7f8;
      box-shadow: 0px 0px 9px 7px #b3d9dc38;
    }

    .slider-item img {
      max-width: 144px;
      height: auto;
      margin-bottom: 10px;
    }

    .slider-item span {
      font-size: 20px;
      color: #555;
      letter-spacing: 3px;
      font-weight: 800;
    }

    .navigation-dots {
      margin-top: 20px;
    }

    .dot {
      display: inline-block;
      width: 10px;
      height: 10px;
      margin: 5px;
      background-color: #ddd;
      border-radius: 50%;
      cursor: pointer;
      transition: background-color 0.3s ease-in-out;
    }

    .dot.active {
      background-color: #8fc1c6;
    }

    .next-btn {
      margin-top: 20px;
      padding: 10px 50px;
      background-color: #8fc1c6;
      color: white;
      border: none;
      border-radius: 20px;
      cursor: pointer;
      font-size: 1em;
    }

    .next-btn:hover {
      background-color: #7ab1b5;
    }

    img.aivrlogo {
      position: absolute;
      top: 23px;
      right: 28px;
      width: 7%;
    }

    img.backbutton {
      position: absolute;
      left: 24px;
      width: 3%;
    }