/* Layout Styles */
.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 8rem 1rem 4rem;
}
#main-content {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 1.5;
  color: #374151;
  background: linear-gradient(to bottom right, #fefce8, #fef2f2);
  margin-top: 5vw;
}

@media (max-width:560px) {
  #main-content {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 1.2;
  color: #374151;
  background: linear-gradient(to bottom right, #fefce8, #fef2f2);
  margin-top: 10vw;
  padding-top: 5.8vw;
}
}

.text-center {
  text-align: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.justify-center {
  justify-content: center;
}

.items-center {
  align-items: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Spacing */
.mb-3 {
  margin-bottom: 3rem;
}

.mb-2-5 {
  margin-bottom: 2.5rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-1-5 {
  margin-bottom: 1.5rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.p-2 {
  padding: 2rem;
}

.py-4 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* Typography */
.heading-1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.heading-2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2rem;
}

.heading-3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.text-lg {
  font-size: 1.25rem;
  color: #4b5563;
}

.text-md {
  color: #4b5563;
  margin-bottom: 1rem;
}

.text-feature {
  color: #374151;
}

.gradient-text {
  background: linear-gradient(to right, #eab308, #ef4444);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Components */
.service-card {
  background: linear-gradient(to bottom right, #fefce8, #fef2f2);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-0.25rem);
}

.approach-card {
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.approach-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.approach-card-primary {
  background: linear-gradient(to bottom right, #eab308, #ef4444);
  color: white;
  transform: scale(1.05);
}

.approach-card-secondary {
  background: linear-gradient(to bottom right, #f9fafb, #fefce8);
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(to right, #eab308, #ef4444);
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-primary:hover {
  background: linear-gradient(to right, #ca8a04, #dc2626);
  transform: scale(1.05);
}

.btn-secondary {
  background: white;
  color: #dc2626;
  border: 1px solid #fecaca;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
  background: #f9fafb;
  transform: scale(1.05);
}

/* List Styles */
.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-top: 0.75rem;
}

.feature-list li:first-child {
  margin-top: 0;
}

.bullet {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #ef4444;
  border-radius: 50%;
  margin-right: 0.75rem;
}

.checklist {
  list-style: none;
  margin-top: 0.5rem;
}

.checklist li {
  margin-top: 0.5rem;
}

/* Utilities */
.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-white {
  color: white;
}

.text-light {
  color: #fef9c3;
}

/* Media Queries */
@media (min-width: 640px) {
  .sm-flex-row {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .heading-1 {
    font-size: 3rem;
  }

  .heading-2 {
    font-size: 2.25rem;
  }

  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
