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

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: #F6F9F5;
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  text-align: center;
  padding: 60px 20px 40px;
}

.hero h1 {
  font-size: 48px;
  color: #28A6A5;
  margin-bottom: 12px;
}

.hero p {
  font-size: 20px;
  color: #666;
}

.products {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  flex: 1;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.card h2 {
  color: #28A6A5;
  margin-bottom: 8px;
}

.subtitle {
  color: #666;
  font-size: 16px;
  margin-bottom: 16px;
}

.card ul {
  list-style: none;
  margin: 16px 0 24px;
  flex: 1;
}

.card ul li {
  padding: 8px 0;
  color: #555;
}

.card ul li::before {
  content: "✓ ";
  color: #28A6A5;
  font-weight: bold;
}

.cta {
  display: inline-block;
  background: #28A6A5;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.cta:hover {
  background: #1F8A89;
  transform: translateY(-2px);
}

.cta.disabled {
  background: #ccc;
  cursor: not-allowed;
}

.cta.disabled:hover {
  transform: none;
}

footer {
  text-align: center;
  padding: 32px 20px;
  border-top: 1px solid #E3E8EA;
  background: #fff;
  margin-top: auto;
}

.links {
  margin-bottom: 12px;
}

.links a {
  color: #127B7A;
  text-decoration: none;
  margin: 0 8px;
}

.links a:hover {
  text-decoration: underline;
}

footer p {
  color: #999;
  font-size: 14px;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }
  
  .card {
    padding: 32px 24px;
  }
}
