* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fafafa;
}

.hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
  background: white;
  text-align: center;
}

.hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 900px;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.hero h1 em {
  color: #0066cc;
  font-style: normal;
  position: relative;
}

.hero h1 a {
  color: #1a1a1a;
  text-decoration: none;
}

.hero h1 a:hover {
  text-decoration: underline;
}

.hero-list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
}

.hero-list-item:before {
  content: "→";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #0066cc;
  border-radius: 50%;
  font-weight: bold;
  flex-shrink: 0;
}

.details {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: center;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.card {
  text-align: left;
  background: white;
  padding: 2.5rem;
  border-radius: 8px;
  border: 2px solid #e5e5e5;
}

.card h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card ul {
  list-style: none;
}

.card li {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.7;
  font-size: 1.05rem;
}

.card li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #0066cc;
  font-weight: bold;
}

.details p {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  padding: 1rem 3rem;
  background: #0066cc;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.2s, transform 0.2s;
}

.cta-button:hover {
  background: #0052a3;
  transform: translateY(-2px);
  text-decoration: none;
}

@media (max-width: 768px) {
  .hero {
    min-height: 50vh;
    padding: 3rem 1.5rem;
  }

  .hero-list {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .cards-container {
    grid-template-columns: 1fr;
  }
}
