
/* ===== BASE ===== */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fff;
}
h1,h2{
   font-family: 'Poppins', sans-serif;
}

.services-page {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

/* ===== HERO ===== */
.hero {
  margin-bottom: 40px;
}
.hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}
.hero p {
  color: #555;
}

/* ===== GROUP ===== */
.group {
  margin-bottom: 60px;
}

/* HEADER */
.group-header {
  position: relative;
  margin-bottom: 25px;
}

.group-header img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  filter: brightness(0.6);
}

.group-header h2 {
  position: absolute;
  bottom: 9px;
  left: 0px;
  color: #000000;
  font-size: 26px;
}

/* ===== BLOCK ===== */
.service-block {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  border: 1.5px solid #000;
  border-radius: 10px;
  margin-bottom: 25px;
  overflow: hidden;
}

.service-text {
  padding: 20px;
  font-size: 14px;
  line-height: 1.7;
}

.service-image {
  border-left: 1px solid #000;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* candidates section slightly different */
.candidates {
  background: #fafafa;
  padding: 20px;
  border-radius: 12px;
}

/* MOBILE */
@media (max-width: 900px) {
  .service-block {
    grid-template-columns: 1fr;
  }

  .service-image {
    border-left: none;
    border-top: 1px solid #000;
    height: 200px;
  }
}
/* ===== FORCE YOUR DESIGN OVER NICEPAGE ===== */
.services-page,
.services-page * {
  font-family: 'Poppins', sans-serif !important;
}

/* ===== TYPOGRAPHY (fix the "plain" look) ===== */
.services-page h1 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 10px;
}

.services-page h2 {
  font-size: 26px;
  font-weight: 600;
}

.services-page h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.services-page p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* ===== IMPROVE BLOCK LOOK ===== */
.service-block {
  transition: all 0.3s ease;
}

.service-block:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

/* ===== IMAGE CLICKABLE FEEL ===== */
.service-image img {
  cursor: pointer;
  transition: transform 0.4s ease;
}

.service-image img:hover {
  transform: scale(1.05);
}
.services-page p strong {
  font-weight: 600;
}

/* Auto bold labels ending with ":" */
.services-page p::first-line {
  font-weight: normal;
}

/* Better approach */
.services-page p {
  position: relative;
}

/* Target text before ":" using span (recommended clean way) */
.label {
  font-weight: 600;
}