
/*
  Consultation page specific styling.
  Keeps pricing and CTA content clear and readable.
*/
.consult-hero {
  background-image: url('../assets/images/bg3.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.consult-hero h1,
.consult-hero p,
.consult-hero .eyebrow {
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.consult-wrap {
  display: grid;
  gap: 1.2rem;
}

.consult-card {
  border: 1px solid var(--color-border);
  border-radius: 22px;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.03);
}

.consult-card h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  letter-spacing: -0.03em;
  text-align: center;
}

.consult-rate {
  margin: 0.6rem 0 0;
  font-size: 1.05rem;
  color: var(--color-text-muted);
  text-align: center;
}

.consult-list {
  margin: 0.9rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  list-style: none;
  text-align: center;
}

.consult-disclaimer {
  margin: 1.5rem 0 0.75rem;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--color-text);
  text-align: center;
}

.calendar-note {
  margin-top: 0.7rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .consult-card .btn {
    width: 100%;
  }
}
