.hero {
  position: relative;
  height: 85vh;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn {
  background-color: #e8c84a;
  color: #1a1a1a;
  padding: 10px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

.intro {
  text-align: center;
  padding: 50px 20px;
  max-width: 700px;
  margin: 0 auto;
}

.intro h2 {
  font-size: 26px;
  margin-bottom: 12px;
}

.intro p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.cards-section {
  padding: 40px 30px;
  background-color: #f5f5f5;
  text-align: center;
}

.cards-section h2 {
  font-size: 24px;
  margin-bottom: 25px;
}

.cards-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: white;
  width: 280px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-body {
  padding: 15px;
  text-align: left;
}

.card-body h3 {
  font-size: 17px;
  margin-bottom: 7px;
}

.card-body p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
}

.card-body a {
  color: #e8c84a;
  text-decoration: none;
  font-weight: bold;
  font-size: 13px;
}

.facts {
  padding: 40px 30px;
  max-width: 700px;
  margin: 0 auto;
}

.facts h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.facts ul {
  list-style: none;
}

.facts ul li {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
  color: #444;
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 28px;
  }

  .cards-row {
    flex-direction: column;
    align-items: center;
  }
}