:root {
  --white: #ffffff;
  --black: #000000;
  --accent-gray: #565656;
  --lighter-gray: #7d7d7d;
  --darker-gray: #233142;
  --golden: linear-gradient(135deg, #A18645, #EBD988, #F5E7A1, #C4B369);
}

/* Terms & Conditions Section Styles */
body section.py-lg-5 {
  width: 100%;
  min-height: calc(100vh - 87px);
  margin-top: 87px;
  padding: 4rem 2rem;
  background: var(--darker-gray);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

body section.py-lg-5 .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

body section.py-lg-5 .ekit-heading--title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3rem;
  text-align: center;
  background: var(--golden);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body section.py-lg-5 .txt-terms {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

body section.py-lg-5 .txt-terms p {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

body section.py-lg-5 .txt-terms p:first-child {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 2rem;
}

body section.py-lg-5 .txt-terms a {
  color: #C4B369;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

body section.py-lg-5 .txt-terms a:hover {
  color: var(--white);
  text-decoration: underline;
}

body section.py-lg-5 .txt-terms h4 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

body section.py-lg-5 .txt-terms h4:first-of-type {
  margin-top: 0;
}

body section.py-lg-5 .txt-terms ul {
  list-style: disc;
  padding-left: 0;
  margin: 1.5rem 0;
}

body section.py-lg-5 .txt-terms ul.no-dot {
  list-style: none;
  padding-left: 1.5rem;
}

body section.py-lg-5 .txt-terms ul li {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

body section.py-lg-5 .txt-terms ul.no-dot li {
  padding-left: 0;
}



body section.py-lg-5 .txt-terms ul li::marker {
  color: #C4B369;
}

body section.py-lg-5 .txt-terms b {
  color: var(--white);
  font-weight: 600;
}

body section.py-lg-5 .txt-terms strong {
  color: var(--white);
  font-weight: 600;
}

@media all and (max-width: 999px) {
  body section.py-lg-5 {
    padding: 2rem 1rem;
  }

  body section.py-lg-5 .ekit-heading--title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  body section.py-lg-5 .txt-terms {
    padding: 2rem 1.5rem;
    border-radius: 0.8rem;
  }

  body section.py-lg-5 .txt-terms p {
    font-size: 0.95rem;
    text-align: left;
  }

  body section.py-lg-5 .txt-terms p:first-child {
    font-size: 1rem;
  }

  body section.py-lg-5 .txt-terms h4 {
    font-size: 1.3rem;
    margin-top: 2rem;
  }

  body section.py-lg-5 .txt-terms ul li {
    font-size: 0.9rem;
    padding-left: 1.2rem;
  }

  body section.py-lg-5 .txt-terms ul.no-dot li {
    padding-left: 0;
  }
}

