.dm__hero {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  padding: 0 80px;
}

.dm__content-column,
.dm__image-column {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dm__content-column {
  justify-content: space-between;
  gap: 3rem;
}

.dm-widget .swiper-slide:not(:last-child) {
  border-right: 1px solid #d6d6d6;
}
.dm-widget .quotes-carousel-container {
  padding-left: 80px;
}

.dm__image-column {
  position: relative;
  align-items: center;
  justify-content: center;
}

.dm-step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dm-step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dm-number {
  background: var(--accent-light-green-color, #7fd8be);
  color: var(--e-global-color-primary);
  min-width: 45px;
  width: 45px;
  height: 45px;
  font-size: 24px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.dm-title {
  margin: 0;
  color: var(--e-global-color-primary);
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.3;
  font-weight: 500;
  flex: 1;
}

.dm-text {
  margin: 0;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

.dm__text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dm-widget .dm__title {
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.4;
  color: var(--e-global-color-primary);
  margin: 0;
  width: 70%;
}

.dm__subtitle {
  font-size: clamp(18px, 3vw, 24px);
  color: var(--e-global-color-primary);
  margin: 0;
}

.dm__cta-description {
  font-size: clamp(16px, 2.5vw, 24px);
  line-height: 1.4;
  margin: 0;
  color: var(--e-global-color-primary-text);
  width: 70%;
}

.dm__hero-image {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: contain;
  border-radius: 8px;
}

.dm__decorative-arrow {
  display: block;
  width: 150px;
  height: 120px;
  background-image: url("assets/arrow_image.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.8;
  font-size: 0;
  color: transparent;
  margin-left: -60px;
  margin-top: 20px;
}

/* Tablet Landscape */
@media (max-width: 1024px) {
  .dm__hero {
    gap: 30px;
    margin-bottom: 4rem;
  }

  .dm__title {
    font-size: 32px;
  }

  .dm__subtitle {
    font-size: 20px;
  }

  .dm__cta-description {
    font-size: 18px;
  }

  .dm-widget .quotes-carousel-container {
    padding: 0;
  }
}

/* Tablet Portrait */
@media (max-width: 767px) {
  .dm__hero {
    flex-direction: column-reverse;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 0 20px;
  }

  .dm__content-column,
  .dm__image-column {
    width: 100%;
  }

  .dm__decorative-arrow {
    display: none;
  }

  .dm-widget .dm__title,
  .dm-widget .dm__cta-description {
    width: 100%;
  }

  .dm-widget .swiper-wrapper .swiper-slide {
    border-right: none;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .dm__hero {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .dm__content-column {
    gap: 1rem;
  }

  .dm__title {
    font-size: 24px;
    line-height: 1.3;
  }

  .dm__subtitle {
    font-size: 16px;
  }

  .dm__cta-button {
    padding: 0.875rem 1.5rem;
    font-size: 16px;
    width: 100%;
    justify-content: center;
  }

  .dm__cta-description {
    font-size: 14px;
  }

  .dm__navigation {
    gap: 0.75rem;
    margin-top: 1.5rem;
  }
}

/* Print Styles */
@media print {
  .dm__navigation,
  .dm__decorative-arrow {
    display: none;
  }

  .dm__hero {
    page-break-inside: avoid;
  }
}
