/* =========================
   TERMS OF SERVICE PAGE CSS
========================= */

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

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

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

.tos-hero-inner{
  max-width: 980px;
  margin: auto;
}

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

.tos-title-icon{
  font-size: 34px;
  color: #a36a3a;
}

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

/* MAIN WRAP */
.tos-wrap{
  padding: 22px 15px 55px;
}

.tos-container{
  max-width: 980px;
  margin: auto;
}

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

.tos-col{
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* CARD */
.tos-card{
  width: 100%;
  background: rgba(255,255,255,0.92);
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 16px 28px rgba(0,0,0,0.15);
  overflow: hidden;
}

/* HEAD */
.tos-card-head{
  padding: 14px 18px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.70);
  display: flex;
  align-items: center;
  gap: 10px;
}

.tos-card-head h2{
  font-size: 15.5px;
  font-weight: 700;
  color: #5b2e1d;
}

/* ICON */
.tos-icon{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f2e3d8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(163,106,58,0.35);
}

.tos-icon i{
  color: #a36a3a;
  font-size: 14px;
}

/* BODY */
.tos-card-body{
  padding: 16px 18px 18px;
  font-size: 12.8px;
  line-height: 1.7;
  color: #4f3b30;
}

/* LIST */
.tos-list{
  padding-left: 16px;
  margin-top: 8px;
}

.tos-list li{
  margin-bottom: 10px;
}

/* CONTACT */
.tos-contact-text{
  margin-bottom: 10px;
}

.tos-contact-line{
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
  font-size: 12.8px;
}

.tos-contact-line i{
  color: #b27644;
}

/* BIG CARD */
.tos-card-wide{
  margin-top: 22px;
}

.tos-card-head-center{
  justify-content: center;
}

.tos-center{
  text-align: center;
}

.tos-center .tos-contact-line{
  justify-content: center;
}

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

  .tos-container{
    max-width: 100%;
  }

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

  .tos-subtitle{
    font-size: 13px;
  }
}
