.sg-services {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.sg-hero {
  text-align: center;
  margin-bottom: 40px;
}

.sg-hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.sg-hero p {
  color: #666;
  font-size: 18px;
}

.sg-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.sg-service-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s;
}

.sg-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.sg-service-card.highlight {
  border: 2px solid #000;
}

.sg-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.sg-service-card h3 {
  margin-bottom: 10px;
}

.sg-service-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.sg-btn {
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.sg-btn-primary {
  background: #000;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
}

.sg-trust {
  display: flex;
  justify-content: space-between;
  margin: 50px 0;
  text-align: center;
}

.sg-trust-item strong {
  display: block;
  font-size: 16px;
}

.sg-trust-item span {
  font-size: 13px;
  color: #777;
}

.sg-cta {
  text-align: center;
  margin-top: 40px;
}