*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  font-family: "Poppins", sans-serif;
  background: #f5f0ea;
  color: #3a2b22;
}

/* HERO */
.sm-hero{
  padding: 40px 15px 25px;
  background: #f3ece6;
  text-align: center;
}

.sm-hero-inner{
  max-width: 1100px;
  margin: auto;
}

.sm-title{
  font-size: 42px;
  font-weight: 700;
  color: #4a2c1d;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.sm-title-icon{
  font-size: 36px;
  color: #a36a3a;
}

.sm-subtitle{
  max-width: 850px;
  margin: 10px auto 0;
  font-size: 14px;
  line-height: 1.7;
  color: #5a4639;
}

/* MAIN WRAP */
.sm-wrap{
  padding: 25px 15px 70px;
}

.sm-container{
  max-width: 1100px;
  margin: auto;
}

/* GRID */
.sm-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

/* CARD */
.sm-card{
  background: rgba(255,255,255,0.85);
  border-radius: 14px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.18);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
}

.sm-card-head{
  padding: 14px 18px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.70);
}

.sm-card-head h2{
  font-size: 16px;
  font-weight: 700;
  color: #5b2e1d;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sm-card-head i{
  color: #b27644;
}

.sm-card-head.center h2{
  justify-content: center;
}

.sm-card-body{
  padding: 16px 18px 18px;
  font-size: 13px;
  line-height: 1.75;
  color: #4f3b30;
}

/* LIST */
.sm-list{
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sm-list li{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.sm-list i{
  font-size: 8px;
  color: #b27644;
}

.sm-list a{
  text-decoration: none;
  color: #4f3b30;
  transition: 0.25s;
}

.sm-list a:hover{
  color: #b27644;
}

/* WIDE CARD */
.sm-card-wide{
  margin-top: 18px;
}

.sm-wide-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

/* RESPONSIVE */
@media (max-width: 900px){
  .sm-grid{
    grid-template-columns: 1fr;
  }

  .sm-wide-grid{
    grid-template-columns: 1fr;
  }

  .sm-title{
    font-size: 30px;
  }
}
