/* ======================================
   TERMS & POLICY PAGE PREMIUM STYLING
====================================== */

/* Inner Hero */
.inner-hero {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f9f4fc 0%, #f3e9fa 100%);
  overflow: hidden;
}

.inner-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
}

.inner-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 17px;
}

/* Decorative Background Circles */
.inner-hero::before,
.inner-hero::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(138, 74, 161, 0.06);
  z-index: 0;
}

.inner-hero::before {
  top: -80px;
  left: -80px;
}

.inner-hero::after {
  bottom: -80px;
  right: -80px;
}

/* Policy Wrapper Card */
.policy-wrapper {
  background: #ffffff;
  padding: 60px;
  margin-bottom: 50px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.policy-wrapper:hover {
  transform: translateY(-3px);
}

/* Headings */
.policy-wrapper h3 {
  margin-top: 35px;
  font-size: 22px;
  position: relative;
  padding-left: 18px;
  color: var(--primary-color);
}

/* Accent line before heading */
.policy-wrapper h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 20px;
  border-radius: 10px;
  background: var(--secondary-color);
}

/* Paragraphs */
.policy-wrapper p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
}

/* Lists */
.policy-wrapper ul {
  padding-left: 25px;
  margin-bottom: 20px;
}

.policy-wrapper ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--text-light);
  position: relative;
}

/* Custom bullet */
.policy-wrapper ul li::marker {
  color: var(--secondary-color);
  font-weight: bold;
}

/* Divider spacing */
.policy-wrapper h3:first-child {
  margin-top: 0;
}

/* Section spacing refinement */
.section-padding.bg-light {
  background: #f9f9f9;
}

/* ======================================
   RESPONSIVE BREAKPOINTS
====================================== */

/* Large Screens */
@media (max-width: 1200px) {
  .policy-wrapper {
    padding: 50px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .inner-hero {
    padding: 100px 0 60px;
  }

  .inner-hero h1 {
    font-size: 38px;
  }

  .policy-wrapper {
    padding: 40px;
  }
}

/* Small Tablets */
@media (max-width: 768px) {
  .inner-hero {
    padding: 80px 0 50px;
  }

  .inner-hero h1 {
    font-size: 32px;
  }

  .inner-hero p {
    font-size: 15px;
  }

  .policy-wrapper {
    padding: 30px;
  }

  .policy-wrapper h3 {
    font-size: 18px;
  }

  .policy-wrapper p,
  .policy-wrapper ul li {
    font-size: 14px;
  }
}

/* Mobile Devices */
@media (max-width: 576px) {
  .inner-hero {
    padding: 60px 0 40px;
  }

  .inner-hero h1 {
    font-size: 26px;
  }

  .policy-wrapper {
    padding: 20px;
    border-radius: 16px;
  }

  .policy-wrapper h3 {
    padding-left: 14px;
  }

  .policy-wrapper h3::before {
    height: 16px;
    top: 5px;
  }
}
