
        .card-stack-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.card-stack {
  position: relative;
  width: 65%;
  height: 75%;
}



.card {
  position: absolute;
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 5%;
  box-shadow: 0 2% 8% rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 7% 5%;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.08);
}



.card-1 {
  z-index: 3;
  transform: translateY(0px) rotate(0deg);
}

.card-2 {
  z-index: 2;
  transform: translateY(2%) rotate(-1deg);
  opacity: 0.95;
}

.card-3 {
  z-index: 1;
  transform: translateY(4%) rotate(1deg);
  opacity: 0.9;
}

.profile-image {
  width: 58%;
  aspect-ratio: 1;
  border-radius: 3%;
  object-fit: cover;
  margin-bottom: 3%;
}



.card-content {
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.name {
  font-family: 'IBM Plex Sans', sans-serif;
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 700;
  color: #F03838;
  margin-bottom: 3%;
}



.review {
  font-family: 'IBM Plex Sans', sans-serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  color: #000;
  margin-bottom: 3%;
  text-align: center;
}



.title {
  font-family: 'IBM Plex Sans', sans-serif;
  font-style: italic;
  font-size: 0.9rem;
  color: #000;
  margin-bottom: 6%;
}





.card.fly-out {
  transform: translateX(120%) translateY(-15%) rotate(25deg) !important;
  opacity: 0.8 !important;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.card.fly-out-left {
  transform: translateX(-120%) translateY(-15%) rotate(-25deg) !important;
  opacity: 0.8 !important;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.card.move-to-bottom {
  z-index: 1 !important;
  transform: translateY(4%) rotate(1deg) !important;
  opacity: 0.9 !important;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.card.move-up {
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.ya-client-iframe {
  margin: 0;
  display: block;
  overflow: hidden;
  width: 24.310118265440213vw;
  height: 54.976303317535546vh;
  background-color: white;
}

@media (max-width: 1024px) {
  .ya-client-iframe {
    width: 80vw;
    height: auto;
    aspect-ratio: 0.7974137931034483;
  }
}

@media (max-width: 768px) {
  .ya-client-iframe {
    width: 100vw;
    height: auto;
    aspect-ratio: 0.7974137931034483;
  }
}

@media (max-width: 768px) {
  .name {
    font-size: 1.25rem;
  }
  
  .review {
    font-size: 0.9rem;
  }
  
  .title {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .ya-client-iframe {
    width: 100vw;
    height: auto;
    aspect-ratio: 0.7773109243697479;
  }
  
  .name {
    font-size: 1.1rem;
  }
  
  .review {
    font-size: 0.85rem;
  }
  
  .title {
    font-size: 0.75rem;
  }
}