#plans-section {
  background-color: #e8ebed; /* soft light gray background */
  color: #222831; /* dark text */
  padding: 4rem 1rem;
}

#plans-section .section-title {
  color: #003B3F; /* muted blue accent */
  text-transform: uppercase;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

#plans-section .section-subtitle {
  color: #222831; /* dark text */
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
}

#plans-section .plan-card {
  background-color: #f1f4f6; /* light neutral card */
  border-radius: 0.8rem;
  color: #222831;
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

#plans-section .plan-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

#plans-section .plan-title {
  font-weight: 600;
  color: #3d5a80; /* muted blue */
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

#plans-section .plan-description {
  font-size: 0.95rem;
  color: #555555; /* muted gray */
  margin-bottom: 1rem;
}

#plans-section .plan-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: #003B3F; /* muted blue */
  margin-bottom: 1.5rem;
}

#plans-section .response-note {
  color: #555555; /* muted gray */
  font-style: italic;
  font-size: 0.9rem;
}

/* Optional: grid layout for plans */
#plans-section .plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

@media (max-width: 768px) {
  #plans-section .section-title {
    font-size: 2rem;
  }

  #plans-section .section-subtitle {
    font-size: 1rem;
  }

  #plans-section .plan-title {
    font-size: 1.1rem;
  }

  #plans-section .plan-description {
    font-size: 0.85rem;
  }

  #plans-section .plan-price {
    font-size: 1rem;
  }
}
