




.card-container {
  display: flex;
  gap: 16px;
  margin: 24px 0;
  justify-content: space-between;
}

.benefit-card {
  flex: 1;
  min-width: 240px;
  background: #f7f8fc;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.benefit-card h3 {
  margin-top: 0;
  font-size: 18px;
  color: #2b4b8b;
}

.benefit-card p {
  margin: 8px 0 0;
  font-size: 14px;
}

.email-signup {
  display: flex;
  justify-content: center;
  height: 2.5em;
  margin-inline: 20%;
  margin-top: 3em;
  flex-wrap: wrap;
}

.email-input {
  max-width: 30em;
  height: 100%;
  width: 100%;
  font-size: 14px;
  border-radius: 1000px;
  border: 1px solid #ccc;
}

.alum-button {
  height: 100%;
  background: linear-gradient(135deg, #060676, #36323a);
  color: white;
  right: -2em;
}

.hero-section {
    justify-content: center;
    text-align: center;
    padding-bottom: 2rem;
    padding-inline: 2em;
}

.hero-message {
  font-size: 4em;
  font-weight: bold;
}

.avatar-stack {
    display: flex;
    justify-content: center;
    padding-left: 20px;
}

.avatar-stack img:hover {
  transform: translateY(-10px);
  z-index: 10;
}

.avatar {
    width: 4em;
    height: 4em;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
    margin-left: -20px;
    transition: all .5s ease;
}

@media (max-width: 700px) { 

  .hero-message {
    font-size: 2.2em;
  }

}