.best-choice {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #edf7fc;
  overflow: hidden;
}

.best-choice__container {
  max-width: min(1280px, 100%);
  margin: 0 auto;
  padding: 96px 56px;
  position: relative;
  z-index: 2;
}

.best-choice__content {
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

/* Main title styling */
.best-choice__title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  color: #1b4759;
  letter-spacing: -2.88px;
  margin: 0;
  flex-shrink: 0;
  width: 368px;
}

/* Benefits container */
.best-choice__benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 668px;
  flex-shrink: 0;
}

.best-choice__benefit {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.best-choice__benefit-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #1b4759;
  width: 100%;
}

/* Benefit title */
.best-choice__benefit-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 32px;
  color: #1b4759;
  letter-spacing: -1.56px;
  margin: 0;
  width: 100%;
}

/* Benefit description */
.best-choice__benefit-description {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #1b4759;
  width: 100%;
}

.best-choice__benefit-description p {
  margin: 0 0 12px 0;
}

.best-choice__benefit-description p:last-child {
  margin-bottom: 0;
}

.best-choice__benefit-description ul {
  margin: 0 0 12px 0;
  padding-left: 24px;
}

.best-choice__benefit-description ul:last-child {
  margin-bottom: 0;
}

.best-choice__benefit-description li {
  margin-bottom: 12px;
}

.best-choice__benefit-description li:last-child {
  margin-bottom: 0;
}

.best-choice__benefit-description ol {
  margin: 0 0 12px 0;
  padding-left: 24px;
}

.best-choice__benefit-description ol:last-child {
  margin-bottom: 0;
}

.best-choice__benefit-description strong {
  font-weight: 700;
}

.best-choice__benefit-description em {
  font-style: italic;
}

.best-choice__benefit-description a {
  color: #1b4759;
  text-decoration: underline;
}

.best-choice__benefit-description a:hover {
  text-decoration: none;
}

/* Separator line */
.best-choice__separator {
  background: linear-gradient(90deg, #FFF 0%, #FFF 69.71%, #FFF 100%);
  height: 2px;
  width: 100%;
  flex-shrink: 0;
}

/* Decorative background element */
.best-choice__decoration {
  position: absolute;
  bottom: 6rem;
  left: -5.3rem;
  width: 31.8rem;
  height: 14.25rem;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
  filter: blur(74px);
  transform: rotate(90deg);
  z-index: 1;
  pointer-events: none;
}

/* Responsive design - Mobile first approach */
@media (max-width: 1024px) {
  .best-choice__content {
    flex-direction: column;
    gap: 2rem;
  }

  .best-choice__title {
    width: 100%;
    max-width: none;
  }

  .best-choice__benefits {
    width: 100%;
    max-width: none;
  }

  .best-choice__container {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .best-choice__container {
    padding: 2rem 1rem;
  }

  .best-choice__title {
    font-size: 2rem;
    line-height: 2.5rem;
    letter-spacing: -0.06em;
  }

  .best-choice__benefit-title {
    font-size: 1.25rem;
    line-height: 1.5rem;
    letter-spacing: -0.06em;
  }

  .best-choice__benefit-description {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
