* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f9fdfb;
  color: #0f2a1d;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.badge {
  background: #e8f6f0;
  color: #2fb67c;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
}

h1 {
  font-size: 52px;
  font-weight: bold;
  margin-bottom: 15px;
}

h1 span {
  color: #2fb67c;
}

.subtitle {
  max-width: 600px;
  font-size: 16px;
  color: #5b7d6c;
  margin-bottom: 30px;
}

.google-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 12px;
  border: 1px solid #dfeee7;
  background: white;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.3s ease;
}

.google-btn img {
  width: 18px;
}

.google-btn:hover {
  background: #eef8f4;
  transform: translateY(-2px);
}

.cards {
  display: flex;
  gap: 25px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.card {
  background: white;
  width: 220px;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.icon {
  background: #e8f6f0;
  color: #2fb67c;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 20px;
}

.card h3 {
  margin-bottom: 8px;
}

.card p {
  color: #6b8f7b;
  font-size: 14px;
}






