/* Core palette to match your site */
:root{
  --brand: #f4a100;     /* accent */
  --deep:  #004d4d;     /* headings / emphasis */
  --ink:   #222;        /* body text */
  --muted: #555;
  --bg:    #ffffff;
  --soft:  #f7f7f7;
  --ring:  rgba(0,0,0,.08);
}

/* Page scaffolding */
.consult-hero{
  background: var(--soft);
  padding: 48px 20px;
}
.consult-hero .hero-inner{
  max-width: 1100px;
  margin: 0 auto;
}
.consult-hero .hero-inner h2{
  color: #f4a100;
  margin-bottom: 20px;
  text-align: center;
}
.consult-hero h1{
  font-size: clamp(28px, 3.2vw, 40px);
  color: var(--deep);
  margin: 0 0 10px;
}
.consult-hero .brand{ color: var(--brand); }
.consult-hero .lead{
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.6;
  max-width: 900px;
  margin: 0;
}

/* Split section */
.consult-split{
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
}
.split-left h2{
  color: var(--deep);
  margin: 0 0 12px;
  font-size: clamp(22px, 2.2vw, 28px);
}
.split-left p{
  color: var(--ink);
  line-height: 1.7;
  margin: 0 0 14px;
}
.tick-list{
  list-style: none;
  padding: 0;
  margin: 10px 0 18px;
}
.tick-list li{
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
  line-height: 1.6;
  color: var(--ink);
}
.tick-list li::before{
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 700;
}

/* Right image */
.split-right img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 6px 20px var(--ring);
  object-fit: cover;
}

/* Buttons */
.btn-primary,
.btn-ghost{
  display: inline-block;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  margin-right: 10px;
}
.btn-primary{
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 12px rgba(244,161,0,.35);
}
.btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(244,161,0,.4);
}
.btn-ghost{
  background: transparent;
  border: 2px solid var(--deep);
  color: var(--deep);
}
.btn-ghost:hover{
  background: var(--deep);
  color: #fff;
  transform: translateY(-1px);
}

/* Card grid */
.consult-cards{
  max-width: 1100px;
  margin: 32px auto 16px;
  padding: 0 20px;
}
.consult-cards h3{
  color: #f4a100;
  margin-bottom: 20px;
  text-align: center;
}
.card-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card{
  background: #fff;
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 6px 18px var(--ring);
  transition: transform .15s ease, box-shadow .2s ease;
}
.card:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}
.card h4{
  color: var(--deep);
  margin: 0 0 8px;
  font-size: 18px;
}
.card p{
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* CTA banner */
.consult-cta{
  text-align: center;
  background: var(--soft);
  padding: 28px 20px 40px;
  margin-top: 24px;
}
.consult-cta h3{
  color: var(--deep);
  margin: 0 0 14px;
  font-size: clamp(20px, 2.2vw, 26px);
}

/* Responsive */
@media (max-width: 992px){
  .consult-split{
    grid-template-columns: 1fr;
  }
  .split-right{
    order: 2;
  }
  .split-left{
    order: 1;
  }
  .card-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px){
  .card-grid{
    grid-template-columns: 1fr;
  }
  .btn-primary, .btn-ghost{
    width: 100%;
    text-align: center;
    margin: 0 0 10px 0;
  }
}
