.card {
  background: #ffffff;
  border: 1px solid #ead2c2;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 12px 35px rgba(69, 31, 11, 0.08);
}

.empty-state {
  background: #fffaf5;
  border: 1px solid #f0d5c2;
  border-radius: 18px;
  padding: 24px;
  color: #7a4a35;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f3e3d6;
  color: #7c2d12;
  font-weight: 800;
  font-size: 13px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1.5px solid #ead2c2;
  background: white;
  color: #7c2d12;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.about-hero{
  text-align:center;
  padding:90px 20px 50px;
}

.hero-desc{
  max-width:700px;
  margin:0 auto;
  font-size:1.1rem;
  line-height:1.8;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:24px;
  margin:40px 0;
}

.stat-card{
  background:white;
  border-radius:24px;
  padding:30px;
  text-align:center;
  border:1px solid #ead2c2;
}

.stat-card h2{
  font-size:2.5rem;
  color:#b85c2d;
}

.about-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:24px;
  margin:50px 0;
}

.about-card{
  background:white;
  padding:32px;
  border-radius:24px;
  border:1px solid #ead2c2;
}

.about-card h2{
  margin-bottom:16px;
}

.about-card p{
  line-height:1.8;
}

.cta-section{
  text-align:center;
  padding:70px 20px;
  background:white;
  border-radius:32px;
  margin:60px 0;
}

.cta-section h2{
  margin-bottom:18px;
}

.cta-section p{
  margin-bottom:30px;
}
.faq-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:24px;
  margin:50px 0;
}

.faq-card{
  background:white;
  border-radius:24px;
  padding:32px;
  border:1px solid #ead2c2;
  transition:0.2s;
}

.faq-card:hover{
  transform:translateY(-4px);
}

.faq-card h2{
  margin-bottom:18px;
  font-size:1.2rem;
}

.faq-card p{
  line-height:1.8;
  color:#6f4a34;
}