.title {
  font-size: 3em;
  font-weight: bold;
  color: var(--color-aqua-blue);
  margin: 80px 0 100px;
}

.video-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 35px;
  aspect-ratio: 16 / 9; /* Keeps correct video proportions */
}

.video-wrapper iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 35px;
}

.scenarios {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 20px 0;
}

.scenario {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-light-blue);
  border-radius: 12px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.scenario:nth-child(even) {
  flex-direction: row-reverse;
}

.scenario:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(233, 220, 220, 0.1);
}

.text-wrapper {
  flex: 1;
  max-width: 500px; 
  padding: 20px;
  margin: 0 auto;
}

.scenario-title {
  font-size: 2em;
  font-weight: 600;
  color: var(--color-aqua-blue);

  margin-bottom: 50px;
  line-height: 1.3;
  max-width: 100%;
}

.scenario:nth-child(odd) .text-wrapper {
  text-align: left;
}

.scenario:nth-child(even) .text-wrapper {
  text-align: right;
}

.description {
  color: var(--color-aqua-blue);
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 100%;
}

.image-wrapper {
  max-width: 500px;
  min-width: 250px; 
  flex: 1;
  display: flex;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  overflow: hidden;
}

.scenario:nth-child(odd) .image-wrapper {
  padding-left: 50px;
}

.scenario:nth-child(even) .image-wrapper {
  padding-right: 50px;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 15px;
}

@media (max-width: 768px) {
  .scenarios {
    gap: 40px;
  }

  .scenario {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .product-content {
    padding-right: 0;
    margin-bottom: 20px;
  }

  .text-wrapper,
  .image-wrapper {
    max-width: 100%;
    min-width: auto;
    padding: 0;
  }

  .image-wrapper {
    padding-top: 20px;
  }
}
