.act-now {
  padding: clamp(40px, 8vw, 80px) 0;
  background: var(--bg-light);
  color: var(--bg-dark);
}

.act-now h2 {
  color: var(--bg-dark);
  text-align: center;
}

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

.act-now-card {
  background: var(--secondary-white);
  padding: 2em;
  border-radius: 15px;
  border: 2px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.act-now-card h3 {
  color: var(--bg-dark);
  margin-bottom: 1em;
}

.act-now-card ul {
  list-style: none;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.act-now-card ul li {
  padding: 0.75em 0;
  padding-left: 2em;
  position: relative;
  color: #374151;
  line-height: 1.6;
  flex: 1;
}

.act-now-card ul li::before {
  content: '●';
  position: absolute;
  left: 0;
  top: 0.4em;
  color: var(--primary-yellow);
  font-size: 20px;
}

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

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

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

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

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

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

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