/* =============================
   Policies Page Styling
============================= */
.policies-page {
  padding: clamp(40px, 6vw, 80px) 20px;
  background-color: #fff;
  font-family: "Amsi Pro", sans-serif;
  color: #333;
}

.policies-page h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
  color: #e52421; /* Dinshaw's red */
}

.policy-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  padding: clamp(20px, 4vw, 40px);
  margin-bottom: clamp(20px, 4vw, 40px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.policy-section h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
  position: relative;
  padding-left: 12px;
}

.policy-section h2::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 24px;
  color: #e52421; /* red bullet */
}

.policy-section p {
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 1.8;
  color: #555;
  margin: 0;
}

/* Responsive Container Fix */
.policies-page .container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Small Devices (mobiles) */
@media (max-width: 768px) {
  .policies-page {
    padding: 30px 15px;
  }

  .policy-section {
    padding: 20px;
  }

  .policies-page h1 {
    font-size: 24px;
  }

  .policy-section h2 {
    font-size: 18px;
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .policies-page h1 {
    font-size: 22px;
  }

  .policy-section {
    padding: 16px;
    border-radius: 12px;
  }

  .policy-section h2 {
    font-size: 16px;
  }

  .policy-section p {
    font-size: 13px;
  }
}
