body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f0f2f5;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.container {
  text-align: center;
  padding: 2rem;
}

h1 {
  font-size: 6rem;
  color: #e63946;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.home-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #457b9d;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.home-link:hover {
  background-color: #1d3557;
}

.container {
  text-align: center;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  margin: 0 1rem;
}

.highlight {
  color: #1e9965;
  font-weight: bold;
}

.subtext {
  font-size: 1.1rem;
  color: #555;
  margin-top: -10px;
  margin-bottom: 2rem;
}

.featured-section {
  margin-top: 3rem;
}

.featured-section h2 {
  font-size: 2rem;
  color: #093238;
  margin-bottom: 1rem;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  background-color: #f1f8e9;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  text-align: left;
  font-size: 1rem;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .features {
    flex-direction: row;
    justify-content: center;
  }

  .feature-item {
    flex: 1;
    max-width: 200px;
  }
}
