@charset "utf-8";

/* terms.css - Styles for the Terms of Service page */

/* .legal-nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  max-width:768px;
  margin:20px auto;
  margin-bottom:30px;
  padding-bottom:14px;
  border-bottom:1px solid #eee;
}

.legal-home{
  font-size:16px;
  text-decoration:none;
  color:#444;
}

.legal-home:hover{
  text-decoration:underline;
}

.legal-links{
  display:flex;
  gap:18px;
}

.legal-links a{
  font-size:14px;
  text-decoration:none;
  color:#777;
}

.legal-links a:hover{
  color:#000;
}

.legal-links a.active{
  color:#000;
  font-weight:600;
}

.terms-container{
  max-width:768px;
  margin:80px auto;
  padding:0 20px;
  line-height:1.7;
}

.terms-title{
  font-size:32px;
  font-weight:700;
  margin-bottom:6px;
}

.terms-date{
  font-size:14px;
  color:#888;
  margin-bottom:40px;
}

.terms-chapter{
  font-size:22px;
  font-weight:700;
  margin-top:50px;
  margin-bottom:20px;
  padding-bottom:10px;
  border-bottom:2px solid #eee;
}

.terms-section{
  margin-bottom:30px;
}

.terms-article{
  font-size:18px;
  font-weight:600;
  margin-bottom:10px;
}

.terms-section p{
  color:#444;
}

.terms-section ol{
  padding-left:20px;
}

.terms-section ul{
  padding-left:20px;
}

.terms-section li{
  margin-bottom:6px;
}

.refund-list{
  margin-top:10px;
  padding-left:18px;
}

@media (max-width:768px){

  .terms-title{
    font-size:26px;
  }

  .terms-chapter{
    font-size:20px;
  }

  .terms-article{
    font-size:16px;
  }

} */

.legal-nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  max-width:768px;
  margin:20px auto;
  margin-bottom:30px;
  padding:0 20px 14px;
  border-bottom:1px solid #eee;
}

.legal-home{
  font-size:16px;
  text-decoration:none;
  color:#444;
  font-weight:700;
}

.legal-home:hover{
  text-decoration:underline;
}

.legal-links{
  display:flex;
  gap:18px;
}

.legal-links a{
  font-size:14px;
  text-decoration:none;
  color:#777;
}

.legal-links a:hover{
  color:#000;
}

.legal-links a.active{
  color:#000;
  font-weight:600;
}

.terms-container{
  max-width:768px;
  margin:80px auto;
  padding:0 20px;
  line-height:1.8;
}

.terms-title{
  font-size:32px;
  font-weight:700;
  margin-bottom:6px;
}

.terms-date{
  font-size:14px;
  color:#888;
  margin-bottom:40px;
}

.terms-chapter{
  font-size:22px;
  font-weight:700;
  margin-top:50px;
  margin-bottom:20px;
  padding-bottom:10px;
  border-bottom:1px solid #eee;
}

.terms-section{
  margin-bottom:36px;
}

.terms-article{
  font-size:18px;
  font-weight:600;
  margin-bottom:12px;
}

.terms-section p{
  color:#444;
  margin-bottom:14px;
}

.terms-section ol,
.terms-section ul{
  padding-left:20px;
  margin-bottom:14px;
}

.terms-section li{
  margin-bottom:8px;
  color:#444;
}

.highlight-box{
  background:#F8FAFC;
  border:1px solid #E2E8F0;
  border-radius:12px;
  padding:18px;
  margin-top:14px;
  font-size:14px;
  color:#475569;
}

.refund-list{
  margin-top:10px;
  padding-left:18px;
}

.terms-footer{
  margin-top:80px;
  padding-top:20px;
  border-top:1px solid #eee;
  font-size:13px;
  color:#999;
  text-align:center;
}

@media (max-width:768px){

  .legal-nav{
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
  }

  .terms-container{
    margin:50px auto;
  }

  .terms-title{
    font-size:26px;
  }

  .terms-chapter{
    font-size:20px;
  }

  .terms-article{
    font-size:16px;
  }

  .terms-section p,
  .terms-section li{
    font-size:14px;
  }

}

/* =========================
   PRIVACY TABLE
========================= */

.privacy-table{
  width:100%;
  border-collapse:collapse;
  margin-top:20px;
  margin-bottom:24px;
  /* margin-left: 2px;
  margin-right: 2px; */
  font-size:14px;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:12px;
  overflow:hidden;
}

.privacy-table thead{
  background:#f8fafc;
}

.privacy-table th{
  padding:14px 16px;
  text-align:left;
  font-weight:600;
  color:#111827;
  border-bottom:1px solid #e5e7eb;
  border-right:1px solid #e5e7eb;
  word-break:keep-all;
}

.privacy-table th:last-child{
  border-right:none;
}

.privacy-table td{
  padding:14px 16px;
  color:#4b5563;
  border-bottom:1px solid #e5e7eb;
  border-right:1px solid #e5e7eb;
  vertical-align:top;
  line-height:1.7;
  word-break:keep-all;
}

.privacy-table td:last-child{
  border-right:none;
}

.privacy-table tr:last-child td{
  border-bottom:none;
}

@media (max-width:768px){

  .privacy-table{
    display:block;
    overflow-x:auto;
    white-space:nowrap;
    font-size:13px;
  }

  .privacy-table th,
  .privacy-table td{
    padding:12px 14px;
  }

}