/* === Homepage Styles === */
body.home-page {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #9fe1ee, #0070f8);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1a1a1a;
}

.hero-container {
  text-align: center;
  padding: 40px;
  background-color: #ebf8fbdd;
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #0044ff;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #333;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn.primary {
  background-color: #0008ff;
  color: #fff;
}

.btn.primary:hover {
  background-color: #001be8;
}

.btn.secondary {
  background-color: #fff;
  border: 2px solid #0033ff;
  color: #0026ff;
}

.btn.secondary:hover {
  background-color: #fff4e1;
}
