.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d4a3e 50%, #1a1a1a 100%);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
}

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

.hero-credit {
  position: absolute;
  bottom: 8px;
  right: 12px;
  font-size: 11px;
  color: #ccc;
  font-family: Arial, sans-serif;
}

.hero-text {
  position: relative;
  text-align: center;
  color: white;
  padding: 40px;
}

.hero-text h1 {
  font-size: 52px;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #ddd;
  font-family: Arial, sans-serif;
}

.btn {
  display: inline-block;
  background-color: #e8c84a;
  color: #1a1a1a;
  padding: 12px 28px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  border-radius: 4px;
  font-family: Arial, sans-serif;
}

.btn:hover {
  background-color: #d4b03a;
}

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

.intro h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.intro p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  font-family: Arial, sans-serif;
}

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

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

.cards-row {
  display: flex;
  gap: 20px;
  max-width: 950px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

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

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

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

.card-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.card-body p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
  font-family: Arial, sans-serif;
}

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

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

.facts h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.facts ul {
  list-style: none;
}

.facts li {
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-family: Arial, sans-serif;
  color: #444;
}
