@import url('https://fonts.googleapis.com/css2?family=Inclusive+Sans&display=swap');

.content-page { padding-top: 0 !important; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.services-hero {
  padding-top: 140px; /* header + comfortable breathing room */
  padding-bottom: 0.75rem;
  background: #000;
  color: #fff;
  text-align: center;
}

.services-title {
  font-size: 2.6rem;
  font-weight: 800;
}

.services-subtitle {
  color: #bbb;
  max-width: 800px;
  margin: 1rem auto 0;
  line-height: 1.6;
}

.services-section {
  background: #000;
  color: #fff;
  padding: 1.5rem 0 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  background: #111;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.35);
  border-color: rgba(255,255,255,0.25);
}

.service-icon {
  font-size: 2rem;
}

.service-name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.cta-section {
  background: linear-gradient(to right, #111, #000, #111);
  color: #fff;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 0.9rem 1.8rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all .3s ease;
}

.cta-button:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .services-hero { padding-top: 68px; padding-bottom: 0.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}


