body {
  background-color: #f5f5f5;
  font-family: Arial, sans-serif;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url("../src/backgorund.png") no-repeat center center;
  background-size: cover;
  min-height: 160px;
  padding: 20px;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero h1,
.hero p {
  z-index: 2;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  margin: 0;
}

.hero h1 {
  font-size: 24px;
  font-weight: bold;
}

.hero p {
  font-size: 14px;
  margin-top: 6px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.card {
  transition: transform 0.2s ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card-body {
  text-align: center;
}
