.home-header {
  text-align: center;
  margin: 60px 20px 40px;
}
.home-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.home-header .subtitle {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 20px;
}
.home-header .btn-group {
  margin-top: 20px;
}
.home-header .btn-group .btn-primary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  background: #0078D7;
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}
.home-header .btn-group .btn-primary:hover {
  background: #005EA1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.intro {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1rem;
  color: #444;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}
.cards .card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  max-width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.cards .card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}
.cards .card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}
.cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.video-container {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}
.video-container video {
  max-width: 90%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/*# sourceMappingURL=index.css.map */