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

.target-section .section-header h2,
.target-section .section-header h3 {
  color: var(--bg-dark);
}

.target-section .section-header p {
  color: var(--text-gray);
}

.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em;
  margin-top: 2em;
}

.checklist-item {
  background: transparent;
  padding: 2em;
  border-radius: 15px;
  border: 2px solid var(--border-light);
}

.checklist-text p {
  margin: 0;
  line-height: 1.6;
  color: #374151;
}

.checklist-text p strong {
  color: var(--bg-dark);
  display: block;
  margin-bottom: 0.25em;
}

.profile-box {
  background: var(--primary-yellow);
  padding: 2em;
  border-radius: 15px;
  margin-top: 2em;
  text-align: center;
}

.profile-box h4 {
  color: var(--bg-dark);
  margin-bottom: 0.5em;
}

.profile-box p {
  color: var(--bg-dark);
  margin: 0;
  font-weight: 500;
}

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

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

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

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

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

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

  .checklist-item {
      padding: 1.5em;
  }

  .profile-box {
      padding: 1.5em;
  }

  .profile-box h4 {
      font-size: 19px;
  }

  .checklist-item {
      padding: 1.5em;
  }
}

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