.hero {
  padding: 80px 0 70px;
}

.hero-inner {
  background-image: url(../img/top.jpg);
}

.hero-text h1 {
  font-size: 44px;
  margin-bottom: 20px;
  color: #2b2622;
  line-height: 1.4;
}

.hero-text p {
  font-size: 17px;
  margin-bottom: 28px;
  color: #4a433d;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-card {
  background-color: #fff;
  border: 1px solid #e3d9cc;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.hero-card h2 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #8c3a3a;
}

.hero-card ul {
  list-style: none;
}

.hero-card li {
  padding: 10px 0;
  border-bottom: 1px solid #f0e7dc;
  font-size: 15px;
}

.hero-card li:last-child {
  border-bottom: none;
}

.top-section {
  padding: 70px 0;
}

.search-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.search-box {
  background-color: #fff;
  border: 1px solid #e3d9cc;
  border-radius: 18px;
  padding: 28px;
}

.search-box h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #8c3a3a;
}

.search-box p {
  margin-bottom: 18px;
  color: #4a433d;
}

.sample-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sample-card {
  background-color: #fff;
  border: 1px solid #e3d9cc;
  border-radius: 18px;
  padding: 20px;
}

.sample-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #2f5d73;
}

.sample-card p {
  font-size: 14px;
  color: #4a433d;
  margin-bottom: 8px;
}

.cta {
  background-color: #fffaf4;
  border-top: 1px solid #e3d9cc;
  border-bottom: 1px solid #e3d9cc;
  text-align: center;
  padding: 70px 0;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 24px;
  color: #4a433d;
}

.cta-buttons {
  justify-content: center;
}

@media (max-width: 900px) {
  .search-links,
  .sample-list {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 34px;
  }
}