/* Basic Reset */
body, h1, h2, h3, h4, p, div, button, a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Font */
body {
  font-family: 'Montserrat', sans-serif;
}

/* Utility Classes (converted from Tailwind) */
.min-h-screen { min-height: 100vh; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
/* Updated background gradient for a more vibrant look */
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, #42a5f5, #673ab7); /* A vibrant blue to a deep purple */
}
.p-4 { padding: 1rem; }
.text-white { color: #fff; }
.w-full { width: 100%; }
.max-w-md { max-width: 28rem; } /* 448px */
.text-center { text-align: center; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.bg-white { background-color: #fff; }
.text-gray-800 { color: #1f2937; }
/* Updated blue for headers */
.bg-blue-600 { background-color: #2196f3; } /* Material Design Blue 500 */
.rounded-t-lg { border-top-left-radius: 0.5rem; border-top-right-radius: 0.5rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.font-bold { font-weight: 700; }
.card-content { padding: 1.5rem; }
.space-y-6 > *:not([hidden]) ~ *:not([hidden]) { margin-top: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.leading-relaxed { line-height: 1.625; }
.font-semibold { font-weight: 600; }
.text-blue-700 { color: #1d4ed8; }
.space-y-3 > *:not([hidden]) ~ *:not([hidden]) { margin-top: 0.75rem; }
.text-left { text-align: left; }
.gap-2 { gap: 0.5rem; }
.h-5 { height: 1.25rem; }
.w-5 { width: 1.25rem; }
/* Updated green for checkmarks */
.text-green-600 { color: #4caf50; } /* Material Design Green 500 */
.text-md { font-size: 1rem; line-height: 1.5rem; }
.font-medium { font-weight: 500; }
.block { display: block; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem; /* rounded-md */
  font-size: 1rem; /* text-base */
  font-weight: 500; /* font-medium */
  height: 2.5rem; /* h-10 */
  padding-left: 1rem; /* px-4 */
  padding-right: 1rem; /* px-4 */
  /* Updated button green */
  background-color: #4caf50; /* Material Design Green 500 */
  color: #fff; /* text-white */
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}
.button:hover {
  background-color: #43a047; /* Material Design Green 600 */
  transform: scale(1.05); /* hover:scale-105 */
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}
.mt-8 { margin-top: 2rem; }
.pt-6 { padding-top: 1.5rem; }
.border-t { border-top-width: 1px; }
.border-gray-200 { border-color: #e5e7eb; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.mb-4 { margin-bottom: 1rem; }
.space-y-4 > *:not([hidden]) ~ *:not([hidden]) { margin-top: 1rem; }
.testimonial-card {
  background-color: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border-radius: 0.375rem;
  border: none;
}
.testimonial-card .p-4 { padding: 1rem; }
.testimonial-card .flex { display: flex; }
.testimonial-card .items-center { align-items: center; }
.testimonial-card .mb-2 { margin-bottom: 0.5rem; }
.testimonial-card .h-4 { height: 1rem; }
.testimonial-card .w-4 { width: 1rem; }
.testimonial-card .text-yellow-400 { color: #facc15; }
.testimonial-card .fill-yellow-400 { fill: #facc15; }
.testimonial-card .text-gray-300 { color: #d1d5db; }
.testimonial-card .italic { font-style: italic; }
.testimonial-card .text-gray-700 { color: #374151; }
.testimonial-card .text-xs { font-size: 0.75rem; line-height: 1rem; }
.testimonial-card .text-gray-600 { color: #4b5563; }
.text-gray-500 { color: #6b7280; }
.mt-4 { margin-top: 1rem; }

/* Main Card Specific */
.card {
  border-radius: 0.5rem; /* Added border-radius for rounded corners */
  /* Removed redundant font-family as it inherits from body */
}

/* FAQ Section Specific */
.faq-section {
  width: 100%;
  max-w-md { max-width: 28rem; } /* max-w-md */
  margin-top: 1rem; /* mt-4 */
  text-align: left;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  color: #1f2937;
  border-radius: 0.5rem; /* rounded-lg */
  /* Removed redundant font-family as it inherits from body */
}
.faq-header {
  background-color: #2196f3; /* Material Design Blue 500 */
  color: #fff;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.faq-header h2 {
  font-size: 1.5rem; /* text-2xl */
  font-weight: 700; /* font-bold */
  text-align: center;
}
.faq-content {
  padding: 1rem;
}
.accordion-item {
  border-bottom: 1px solid #e5e7eb; /* border-b border-gray-200 */
}
.accordion-item:last-child {
  border-bottom: none;
}
.accordion-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 0; /* py-4 */
  font-size: 1rem; /* text-base */
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: #1f2937; /* text-gray-800 */
}
.accordion-trigger:hover {
  text-decoration: none;
}
.accordion-trigger svg {
  height: 1rem; /* h-4 */
  width: 1rem; /* w-4 */
  flex-shrink: 0;
  transition: transform 0.2s ease-out;
}
.accordion-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.accordion-content {
  overflow: hidden;
  transition: height 0.2s ease-out;
  height: 0; /* Initially hidden */
  padding-bottom: 0;
  font-size: 0.875rem; /* text-sm */
  color: #6b7280; /* text-muted-foreground */
}
.accordion-content.open {
  height: auto; /* Will be set by JS */
  padding-bottom: 1rem;
}
.accordion-content p {
  padding-bottom: 1rem;
}

/* Footer */
footer {
  margin-top: 2rem;
  text-align: center;
  color: #fff;
  font-size: 0.875rem;
}