/* Styles specific to the audit packages on the audit page */
.audit-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Ensure audit package cards align nicely within grid */
.audit-packages .service-card {
  /* Align items at the top and enhance card styling */
  align-items: flex-start;
  border: 2px solid var(--color-primary);
  background-color: #eff6ff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

/* Emphasise headings and prices within audit package cards */
.audit-packages .service-card h3,
.audit-packages .service-card .service-price {
  color: var(--color-primary);
}

.audit-packages .service-card .service-price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.audit-packages .service-card .service-desc {
  color: var(--color-dark);
}
