/* -----------------------------------------
   Policy Pages (Privacy, Refund, Terms) Styles
----------------------------------------- */

.policy-page {
  background-color: var(--bg-main);
  color: var(--text-primary);
  overflow-x: hidden;
}

/* Page Header Bar */
.policy-header-bar {
  background-color: #3E3D48;
  /* Specific dark tone from image */
  padding: 60px 0;
  text-align: center;
  margin-bottom: 50px;
}

.policy-header-bar h1 {
  font-size: 48px;
  font-weight: 700;
  margin: 0;
}

/* Content Container */
.policy-content-section {
  padding-bottom: 100px;
}

.policy-card {
  /* background-color: #2B2936; */
  /* Matching the card bg in the image */
  border-radius: 0px;
  /* Rectangular as per image */
  padding: 60px;
  /* border: 1px solid rgba(255, 255, 255, 0.05); */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.policy-card h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}

.policy-last-updated {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 25px;
  display: block;
}

.policy-divider {
  border-top: 2px solid rgba(255, 255, 255, 1);
  margin-bottom: 40px;
}

/* Document Text Styling */
.policy-body h3 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #fff;
}

.policy-body p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 991px) {
  .policy-header-bar {
    padding: 40px 0;
  }

  .policy-header-bar h1 {
    font-size: 32px;
  }

  .policy-card {
    padding: 30px 20px;
  }

  .policy-card h2 {
    font-size: 24px;
  }

  .policy-body h3 {
    font-size: 18px;
    margin-top: 30px;
  }
}