/* Hero Section Styles */
.hero-section {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  background: none;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(40,30,10,0.5) 0%, rgba(40,30,10,0.7) 100%), url('/images/your-bg.jpg') center/cover no-repeat;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2.5rem 1.2rem 2.5rem 1.2rem;
  text-align: center;
  color: #fff;
}
.hero-section h1 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  line-height: 1.15;
}
.hero-section .highlight {
  color: #f5b800;
  font-weight: 700;
}
.hero-sub {
  font-size: 1.1rem;
  margin-bottom: 1.7rem;
  color: #fff;
}
.hero-sub .highlight {
  color: #f5b800;
}
.hero-btn {
  display: inline-block;
  background: #f5b800;
  color: #fff;
  font-weight: 600;
  border-radius: 2rem;
  padding: 0.9rem 2.1rem;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s;
}
.hero-btn .arrow {
  margin-left: 0.7em;
  font-size: 1.2em;
  vertical-align: middle;
}
.hero-btn:hover {
  background: #e0a800;
}

.services-section {
  background: #fff;
  padding: 2.5rem 0 1.5rem 0;
  text-align: center;
}
.services-section h2 {
  color: #3d2a13;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.services-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: stretch;
  padding: 0 1rem;
}
.service-card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 1.3rem 1.1rem 1.1rem 1.1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-icon {
  background: #fffbe6;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
}
.service-icon img {
  width: 32px;
  height: 32px;
}
.service-title {
  color: #6d4c1b;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.service-desc {
  color: #888;
  font-size: 0.98rem;
  line-height: 1.4;
} 