/* MAIN LAYOUT */
main {
  padding: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  color: #1e293b;
}

/* INTRO */
.intro h2 {
  font-size: 2rem;
  color: #0f172a;
  margin-bottom: 1rem;
}

.intro h2 i {
  color: #2563eb;
  margin-right: 0.5rem;
}

.intro-text {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.intro-subtext {
  color: #475569;
  margin-bottom: 2rem;
}

/* SERVICES GRID */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* SERVICE CARD */
.service-card {
  background: #f8fafc;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.service-card h3 i {
  color: #2563eb;
  margin-right: 0.4rem;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.service-highlight {
  font-size: 0.85rem;
  color: #2563eb;
  font-weight: 500;
  margin-bottom: 1rem;
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-secondary {
  border: 1px solid #2563eb;
  color: #2563eb;
}

.btn-secondary:hover {
  background: #2563eb;
  color: #fff;
}

/* CLOSING */
.closing {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
  font-size: 0.95rem;
  color: #334155;
}
