/* HERO */

.counselling-hero {
  background: linear-gradient(135deg, #0b1324, #1e3a8a);
  padding: 7rem 0;
}

.counselling-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.counselling-hero__content h1 {
  color: #fff;
  margin-bottom: 1rem;
}

.counselling-hero__content p {
  color: rgba(255, 255, 255, 0.85);
}

.counselling-hero__image img {
  width: 100%;
  border-radius: 24px;
}

/* CARDS */

.counselling-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.counselling-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: 0.3s;
}

.counselling-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* CTA */

.counselling-cta {
  background: linear-gradient(135deg, #0b1324, #111827);
  color: white;
  padding: 5rem 0;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .counselling-hero__grid,
  .counselling-grid {
    grid-template-columns: 1fr;
  }
}
