:root {
  /* ===== Unbox Logo Colors ===== */
  --primary: #08A89A;
  --primary-dark: #078F84;
  --primary-light: #E8F8F6;

  /* ===== Text ===== */
  --text-dark: #172033;
  --text-body: #4A5568;
  --text-light: #A0AEC0;

  /* ===== Background ===== */
  --white: #FFFFFF;
  --background: #F7FCFB;

  /* ===== Borders ===== */
  --border: #DDEDEA;
}


/* ================= GLOBAL ================= */

body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--background);
  color: var(--text-body);
  margin: 0;
  padding: 0;
  line-height: 1.8;
}


/* ================= HEADER ================= */

.top-header {
  background: var(--white);
  padding: 18px 0;
  box-shadow: 0 4px 20px rgba(0, 120, 110, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1150px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* ================= BRAND ================= */

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-icon {
  color: var(--primary);
  font-size: 32px;
  display: flex;
  align-items: center;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  line-height: 1;
}

.brand-subtitle {
  font-size: 9px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 4px;
  line-height: 1;
}


/* ================= HEADER RIGHT ================= */

.header-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 16px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--primary);
}


/* ================= SUPPORT BUTTON ================= */

.support-btn {
  background: var(--primary);
  color: var(--white);
  padding: 10px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;

  box-shadow: 0 6px 15px rgba(8, 168, 154, 0.25);

  transition: all 0.3s ease;
}

.support-btn:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);

  box-shadow: 0 8px 20px rgba(8, 168, 154, 0.35);
}


/* ================= PAGE HEADER ================= */

.page-header {
  background: linear-gradient(
    180deg,
    #E8F8F6 0%,
    #F7FCFB 100%
  );

  padding: 100px 0 140px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem !important;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.025em;
}


/* ================= POLICY WRAPPER ================= */

.policy-wrapper {
  max-width: 1000px;
  margin: -70px auto 50px;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}


/* ================= POLICY CARD ================= */

.policy-card {
  background: var(--white);
  border-radius: 20px;

  border: 1px solid var(--border);

  box-shadow:
    0 10px 30px rgba(0, 90, 80, 0.07);

  padding: 40px 50px;
  margin-bottom: 30px;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.policy-card:hover {
  transform: translateY(-3px);

  box-shadow:
    0 15px 35px rgba(0, 90, 80, 0.11);
}


/* ================= POLICY ICON ================= */

.policy-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}


/* ================= POLICY HEADING ================= */

.policy-card h2 {
  font-weight: 800;
  font-size: 1.75rem;
  margin-bottom: 20px;

  color: var(--text-dark);

  display: flex;
  align-items: center;
  gap: 15px;
}


/* ================= SECTION ICON ================= */

.section-icon {
  color: var(--primary);
  font-size: 28px;

  display: flex;
  align-items: center;
  justify-content: center;
}


/* ================= SUB HEADINGS ================= */

.policy-card h5 {
  font-weight: 800;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--text-dark);
}


/* ================= POLICY TEXT ================= */

.policy-card p,
.policy-card ul,
.policy-card ol {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-body);
}


/* ================= LINKS ================= */

.policy-card a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.policy-card a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}


/* ================= STRONG TEXT ================= */

.policy-card strong {
  color: var(--text-dark);
  font-weight: 700;
}


/* ================= CONTACT BOX ================= */

.contact-box {
  background: var(--primary-light);
  border-radius: 16px;

  padding: 30px;
  margin-top: 30px;

  border: 1px solid #D4EEEA;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;

  margin-bottom: 15px;

  color: var(--text-dark);
  font-weight: 600;
  font-size: 16px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item i {
  width: 40px;
  height: 40px;

  border-radius: 10px;

  background: var(--white);
  color: var(--primary);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;

  box-shadow:
    0 4px 10px rgba(8, 168, 154, 0.10);
}


/* ================= FOOTER ================= */

footer {
  background: #172033;
  color: #E2E8F0;

  margin-top: 60px;
  padding: 60px 20px 30px;
}

.footer-container {
  max-width: 1150px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;

  gap: 50px;
}


/* ================= FOOTER BRAND ================= */

.footer-brand {
  color: white;
  font-size: 24px;
  font-weight: 900;

  margin-bottom: 15px;

  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand i {
  color: var(--primary) !important;
}


/* ================= FOOTER TEXT ================= */

.footer-quote {
  color: #A0AEC0;
  margin-bottom: 20px;

  font-size: 15px;
  line-height: 1.7;
}

footer h5 {
  color: white;
  font-weight: 800;
  margin-bottom: 20px;
  font-size: 18px;
}

footer p,
footer li {
  color: #A0AEC0;
  font-size: 15px;
}

footer ul {
  padding: 0;
  list-style: none;
}

footer li {
  margin-bottom: 12px;
}

footer a {
  color: #E2E8F0;
  text-decoration: none;
  transition: 0.2s;
}

footer a:hover {
  color: var(--primary);
}


/* ================= FOOTER BOTTOM ================= */

.footer-bottom {
  max-width: 1150px;
  margin: 50px auto 0;

  padding-top: 25px;

  border-top: 1px solid #2D3748;

  text-align: center;

  font-size: 14px;
  color: #718096;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  .header-container {
    padding: 0 15px;
  }

  .brand-title {
    font-size: 20px;
  }

  .brand-icon {
    font-size: 26px;
  }

  .nav-links {
    display: none;
  }

  .support-btn {
    padding: 8px 20px;
    font-size: 14px;
  }

  .page-header {
    padding: 80px 0 100px;
  }

  .page-header h1 {
    font-size: 2rem !important;
  }

  .policy-wrapper {
    margin-top: -50px;
    padding: 0 15px;
  }

  .policy-card {
    padding: 30px 25px;
    border-radius: 16px;
  }

  .policy-card h2 {
    font-size: 22px;
    gap: 12px;
  }

  .section-icon {
    font-size: 24px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}