body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #f8f9fa;
  color: #333;
}

header {
  background: linear-gradient(to right, #ffffff, #500000);
  padding: 1rem 1rem;
  text-align: left;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
}

header p {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

.hero {
  padding: 1rem 1rem;
  text-align: center;
  background: #e9ecef;
  color: #500000;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 2rem;
  margin: 0 auto;
  font-style: italic;
  margin-bottom: 1rem;
}

.services {
  padding: 4rem 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  color: #500000;
  text-align: center;
  padding: 2rem;
  border-radius: 10% 10% 2% 2%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  margin-top: 0;
  color: #500000;
}

.service-card p {
  font-size: 1rem;
}

footer {
  background: linear-gradient(to right, #ffffff, #500000);
  color: #500000;
  padding: 0.5rem 2rem;
  text-align: left;
}

img {
  border-radius: 10% 10% 2% 2%; /* top-left, top-right, bottom-right, bottom-left */ 
}

footer p {
  margin: 1rem 0;
}

.illustration {
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 1rem;
}
