/* style.css */

/* Basic resets */
body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9fafb;
  color: #1f2937; /* Dark gray */
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
}

/* Typography */
.text-center {
  text-align: center;
}

.text-4xl {
  font-size: 2.25rem;
  font-weight: 700;
}

.text-3xl {
  font-size: 1.875rem;
  font-weight: 700;
}

.text-2xl {
  font-size: 1.5rem;
  font-weight: 600;
}

.text-lg {
  font-size: 1.125rem;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.text-gray-600 {
  color: #4b5563;
}

.text-gray-700 {
  color: #374151;
}

.text-blue-600 {
  color: #2563eb;
}

.text-blue-600:hover {
  color: #1d4ed8;
}

/* Buttons */
.bg-blue-600 {
  background-color: #2563eb;
}

.bg-green-600 {
  background-color: #16a34a;
}

.bg-blue-600:hover {
  background-color: #1d4ed8;
}

.bg-green-600:hover {
  background-color: #15803d;
}

a.bg-blue-600,
a.bg-green-600 {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
}

a.bg-blue-600:hover,
a.bg-green-600:hover {
  transform: translateY(-2px);
}

/* Sections */
section {
  margin-bottom: 4rem;
}

/* Cards (Plans section) */
.grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.border {
  border: 1px solid #e5e7eb;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.shadow {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.hover\:shadow-lg:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.transition {
  transition: all 0.3s ease;
}

/* Background colors */
.bg-blue-50 {
  background-color: #eff6ff;
}

/* List */
.list-disc {
  list-style-type: disc;
}

.list-inside {
  padding-left: 1rem;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

/* Margin and padding utilities */
.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

