:root{
  --brand:       #bc98e1;
  --brand-dark:  #a07cc8;
  --brand-light: #ede5f8;
  --dark:        #1a1a2e;
  --gray-bg:     #f8f9fa;
  --text-muted:  #5c626e;
  --hero-bg: radial-gradient(circle at 80% 50%, #e1ccff 0%, #ecdfff 40%, #f6f0ff 100%);
}

/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Nunito', sans-serif;
  background: var(--gray-bg);
  color: var(--dark);
  line-height:1.7;
}

/* HERO */
.terms-hero{
    margin-top: 75px;
  background: var(--hero-bg);
  padding: 70px 20px 50px;
  text-align:center;
}

.terms-hero-title{
  font-size:42px;
  font-weight:900;
  color: var(--dark);
}

.terms-hero-subtitle{
  margin-top:10px;
  color: var(--text-muted);
  font-size:15px;
  max-width:600px;
  margin-inline:auto;
}

/* CONTAINER */
.terms-container{
  max-width:900px;
  margin:auto;
  padding:40px 20px 70px;
}

/* SECTION CARD */
.terms-section{
  background:#fff;
  border-radius:14px;
  padding:22px 24px;
  margin-bottom:18px;
  border:1px solid rgba(188,152,225,0.25);
  box-shadow:0 8px 20px rgba(0,0,0,0.04);
  transition:0.3s ease;
}

.terms-section:hover{
  transform: translateY(-3px);
  border-color: var(--brand);
}

/* TITLE */
.terms-section-title{
  font-size:18px;
  margin-bottom:10px;
  color: var(--brand-dark);
  font-weight:800;
  position:relative;
  padding-left:12px;
}

.terms-section-title::before{
  content:'';
  position:absolute;
  left:0;
  top:4px;
  width:4px;
  height:18px;
  background: var(--brand);
  border-radius:10px;
}

/* TEXT */
.terms-section-text{
  color: var(--text-muted);
  font-size:15px;
}

/* FOOTER */
.terms-footer{
  text-align:center;
  padding:30px 20px;
  color: var(--text-muted);
  font-size:13px;
}

/* RESPONSIVE */
@media(max-width:600px){
  .terms-hero-title{
    font-size:28px;
  }
}