@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  /* ===== COLORS (map từ COLORS của bạn) ===== */
  --main-mint: #A8E6CF;
  --black: #000000;
  --white: #FFFFFF;
  --main-grey: #F9F9F9;
  --grey: #6C757D;
  /* = mediumGrey */
  --dark-grey: #3A4A5B;
  --almost-black: #101627;
  --red75: #E64646BF;
  --red: #F22C2C;
  --red40: rgba(230, 70, 70, 0.4);
  --light-grey: #CBD6DC;
  --medium-mint: #548f87;
  --soft-neutral: #F8FAFC;
  --light-neutral: #EDF2F7;
  --text-success: #45B441;
  --fill-success-light: #F3FBF2;
  --border-success-light: #E2F7E1;

  --black-50: rgba(0, 0, 0, .5);
  --black-70: rgba(0, 0, 0, .7);
  --light-grey-50: rgba(212, 219, 222, .5);

  --main-mint-gradient: linear-gradient(90deg, #BDEDDB, #A8E6CF, #7ED4B4);

  /* ===== FONTS ===== */
  --ff-base: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  --fw-bold: 700;
  /* Poppins-Bold */
  --fw-semibold: 600;
  /* Poppins-SemiBold */
  --fw-medium: 500;
  /* Poppins-Medium */
  --fw-regular: 400;
  /* Poppins-Regular */

  --size-10: 10px;
  --size-11: 11px;
  --size-12: 12px;
  --size-13: 13px;
  --size-14: 14px;
  --size-15: 15px;
  --size-16: 16px;
  --size-18: 18px;
  --size-20: 20px;
  --size-24: 24px;
  --size-28: 28px;
  --size-30: 30px;
  --size-36: 36px;
  --size-40: 40px;

  --lh: 1.3;
}

/* Base */
html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--almost-black);
  font-family: var(--ff-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh);
  background: var(--white);
}

header {
  width: 100%;
  background-color: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 10;
}

.container {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}

.content-container {
  padding: 16px 20px;
  margin-top: 16px;
  /* background-color: var(--main-grey); */
  width: 100%;
  max-width: 1024px;
}

.site-logo {
  display: block;
  max-width: 100%;
  max-height: 48px;
  height: auto;
  padding: 20px;
}


.agreement-title {
  font-size: var(--size-30);
  line-height: calc(var(--size-30) * var(--lh));
  font-weight: var(--fw-semibold);
  color: var(--grey);


}

.terms-title {
  font-size: var(--size-24);
  line-height: calc(var(--size-24) * var(--lh));
  font-weight: var(--fw-semibold);
  color: var(--dark-grey);
  margin-top: 6px;
}

.last-updated {
  font-size: var(--size-14);
  line-height: calc(var(--size-14) * var(--lh));
  font-weight: var(--fw-regular);
  color: var(--grey);
  margin-top: 6px;
}

.company-info {
  font-size: var(--size-14);
  line-height: calc(var(--size-14) * var(--lh));
  font-weight: var(--fw-regular);
  color: var(--grey);
  margin-top: 6px;
}

.clause-section {
  margin-bottom: 50px;
}

.agreement-content {
  margin-top: 28px;
}

.clause-title {
  font-size: var(--size-16);
  line-height: calc(var(--size-16) * var(--lh));
  font-weight: var(--fw-semibold);
  color: var(--dark-grey);
  margin-bottom: 10px;
}

.clause-content {
  font-size: var(--size-14);
  line-height: calc(var(--size-14) * var(--lh));
  font-weight: var(--fw-regular);
  color: var(--grey);
}

.clause-content ul,
.clause-content .sublist {
  list-style-type: none;
  padding-left: 0;
}

.text-success {
  color: var(--text-success);
}

.bg-success-soft {
  background: var(--fill-success-light);
  border: 1px solid var(--border-success-light);
}