.page-header {
  background: #007bff;
  color: white;
  padding: 60px 30px;
  text-align: center;
  border-radius: 0 0 20px 20px;
}
.page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.page-header p {
  font-size: 1.4rem;
  font-weight: 300;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.service-summary {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.2rem;
}

.service-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.card {
  background: #202331;
  color: #fff;
  border-radius: 12px;
  padding: 32px 14px 25px 14px;
  box-shadow: 0 6px 24px rgb(0 0 0 / 9%);
  transition: box-shadow 0.22s;
  text-align: center;
  min-height: 210px;
}
.card h2 {
  color: #ffe066;
  font-size: 1.34rem;
  margin-bottom: 10px;
  line-height: 1.2;
}
.card p {
  color: #e1e3f1;
  font-size: 1.02rem;
}

.card:hover {
  box-shadow: 0 8px 32px 0 rgba(25,115,210,0.13);
}

.btn-primary {
  background: #fff200;
  color: #00153b;
  padding: 14px 40px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.15rem;
  border: none;
  text-decoration: none;
  letter-spacing: 1px;
  margin-top: 36px;
  display: inline-block;
  transition: background 0.22s;
}
.btn-primary:hover {
  background: #ffe066;
}

.cta-centered {
  text-align: center;
  margin-top: 40px;
}

footer {
  padding: 22px 40px;
  background: #232323;
  color: #ffe066;
  text-align: center;
  font-size: 1.05rem;
  letter-spacing: .2px;
  border-top: 1px solid #2d2d2d;
}
