/* === HOME PAGE === */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 48px 60px;
}

.hero h1 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #202124;
  margin-bottom: 12px;
}

.hero p {
  font-size: 1.1rem;
  color: #5f6368;
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #1a73e8;
  color: #fff;
  border: none;
  border-radius: 24px;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
}

.hero-btn:hover {
  background: #1557b0;
  text-decoration: none;
  color: #fff;
}

@media (max-width: 768px) {
  .hero {
    padding: 48px 20px 40px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
