
.problem-section {
  padding: clamp(40px, 8vw, 80px) 0;
  background: var(--secondary-white);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3em;
}

.problem-column {
  display: flex;
  flex-direction: column;
}

.problem-header {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 1em;
}

.problem-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-yellow);
  border-radius: 8px;
  flex-shrink: 0;
}

.problem-column h3 {
  color: var(--bg-dark);
  margin: 0;
  font-size: clamp(18px, 3.5vw, 22px);
  font-weight: 600;
  line-height: 1.4;
}

.problem-column p {
  color: #374151;
  margin: 0;
  font-size: clamp(15px, 2.8vw, 17px);
  line-height: 1.7;
}

/* TABLET to DESKTOP - Medium (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .problem-section {
      padding: 70px 0;
  }

  .problem-grid {
      grid-template-columns: 1fr;
      gap: 2.5em;
  }
}

/* TABLET - Small to Medium (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .problem-section {
      padding: 60px 0;
  }

  .problem-grid {
      grid-template-columns: 1fr;
      gap: 2.5em;
  }
}

/* MOBILE - Extra Small (up to 480px) */
@media (max-width: 480px) {
  .problem-section {
      padding: 50px 0;
  }

  .problem-grid {
      grid-template-columns: 1fr;
      gap: 2em;
  }

  .problem-icon {
      width: 50px;
      height: 50px;
  }

  .problem-header {
      gap: 1em;
      margin-bottom: 0.75em;
  }

  .problem-column h3 {
      font-size: 19px;
      line-height: 1.4;
  }

  .problem-column p {
      font-size: 16px;
      line-height: 1.7;
  }
}

/* Landscape orientation optimization for tablets */
@media (min-width: 481px) and (max-width: 1024px) and (orientation: landscape) {
  .problem-section {
      padding: 50px 0;
  }

  .problem-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2em;
  }
}