header {
  width: 100%;
  height: 300px;
  background-color: #f8f9fa;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

header {
  background-size: cover;
  background-position: center;
  min-height: 60vh;
  padding: 3rem 0;
}

main {
  line-height: 1.8;
}

main h2 {
  color: #20242c;
}

main p {
  font-size: 1rem;
  color: #555;
}

.bg-light {
  background-color: #f8f9fa !important;
}

img {
  border: 1px solid #ddd;
  border-radius: 5px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

.feature-card h5 {
  color: #20242c;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: #555;
}

.list-benefits {
  list-style: none;
  padding: 0;
  line-height: 1.8;
}

.list-benefits li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  font-size: 1rem;
  color: #555;
}

.list-benefits li:before {
  content: "✔";
  color: #007bff;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}
