/* Reminder Section */
.reminder-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6vw 8vw;
  gap: clamp(16px, 4vw, 48px);
  flex-wrap: wrap;
  background: var(--rose-50);
}

.reminder-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 4vw, 48px);
  flex-wrap: wrap;
  width: 100%;
}

.reminder-section .text {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.reminder-section .text h2 {
  font-size: clamp(28px, 6vw, 48px);
  color: var(--brand);
  text-align: center;
}

.reminder-section .text h3 {
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 400;
  line-height: 1.6;
  margin-top: clamp(8px, 2vw, 16px);
  max-width: clamp(260px, 90vw, 700px);
  color: var(--muted);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.phone-visual {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
}

.phone-visual img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: cover;
}

/* Mobile responsive adjustments */
@media (max-width: 480px) {
  .reminder-section {
    padding: 40px 20px;
  }
}

