body {
  font-family: 'Raleway', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom, #f0f4ff, #ffffff);
  color: #1f2937;
  line-height: 1.6;
}

h1.logo {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin: 0;
}

header {
  background: radial-gradient(circle at top left, #3b82f6, #2563eb);
  color: white;
  text-align: center;
  padding: 2.5rem 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

header .baseline {
  font-size: 1.25rem;
  font-weight: 400;
  margin-top: 0.5rem;
}

section {
  max-width: 1000px;
  margin: auto;
  padding: 3rem 1rem;
}

.intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.intro .highlight {
  background-color: #dbeafe;
  padding: 0.2rem 0.5rem;
  border-radius: 0.3rem;
  color: #1d4ed8;
  font-weight: 700;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.card {
  background: white;
  border-left: 5px solid #3b82f6;
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
  border-left-color: #1e40af;
}

.card h3 {
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.links {
  margin-top: 1rem;
}

.links a {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.links a:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.5);
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  background-color: #f3f4f6;
  color: #6b7280;
  margin-top: 3rem;
}
