.policy-content {
  padding: 3rem 0;
}

.policy-content h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.policy-content h1::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary);
}

.policy-content h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

.policy-content h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary);
}

.policy-content h3 {
  font-size: 1.4rem;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.policy-content p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.policy-content ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.policy-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.last-updated {
  text-align: right;
  font-style: italic;
  color: var(--dark-gray);
  margin-bottom: 2rem;
}

.policy-header {
  background-color: transparent;
  padding: 3rem 0;
  text-align: center;
}

.policy-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.policy-header p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.contact-info {
  background-color: transparent;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.contact-info h3 {
  margin-top: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-icon {
  margin-right: 1rem;
  font-size: 1.2rem;
  color: var(--primary);
}

/* ============================================
   Comprehensive Responsive Styles
   ============================================ */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
  .policy-content {
    max-width: 1000px;
    margin: 0 auto;
  }
}

/* Desktop (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .policy-content {
    max-width: 950px;
    margin: 0 auto;
  }
}

/* Laptop/Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) {
  .policy-content {
    max-width: 900px;
    margin: 0 auto;
  }
}

/* Tablet (768px - 991px) */
@media (max-width: 992px) {
  .policy-header {
    padding: 3rem 0 2rem;
  }

  .policy-header h1 {
    font-size: 2.5rem;
  }

  .policy-header p {
    font-size: 1.1rem;
  }

  .policy-content {
    padding: 2rem 1.5rem;
  }

  .policy-content h1 {
    font-size: 2.2rem;
  }

  .policy-content h2 {
    font-size: 1.6rem;
  }

  .policy-content h3 {
    font-size: 1.3rem;
  }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 768px) {
  .policy-header {
    padding: 2.5rem 0 1.5rem;
  }

  .policy-header h1 {
    font-size: 2.2rem;
  }

  .policy-header p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .policy-content {
    padding: 1.5rem 1rem;
  }

  .policy-content h1 {
    font-size: 2rem;
  }

  .policy-content h2 {
    font-size: 1.5rem;
  }

  .policy-content h3 {
    font-size: 1.2rem;
  }

  .policy-content p {
    font-size: 0.95rem;
  }

  .policy-content ul {
    margin-left: 1.5rem;
  }

  .contact-info {
    padding: 1.5rem;
  }
}

/* Mobile (480px - 575px) */
@media (max-width: 576px) {
  .policy-header {
    padding: 2rem 0 1rem;
  }

  .policy-header h1 {
    font-size: 1.8rem;
  }

  .policy-header p {
    font-size: 0.95rem;
  }

  .policy-content {
    padding: 1.2rem 0.8rem;
  }

  .policy-content h1 {
    font-size: 1.6rem;
  }

  .policy-content h2 {
    font-size: 1.3rem;
  }

  .policy-content h3 {
    font-size: 1.1rem;
  }

  .policy-content p {
    font-size: 0.9rem;
  }

  .policy-content ul {
    margin-left: 1.2rem;
  }

  .last-updated {
    font-size: 0.85rem;
    text-align: center;
  }

  .contact-info {
    padding: 1.2rem;
  }

  .contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .contact-icon {
    margin-right: 0;
  }
}

/* Small Mobile (360px - 479px) */
@media (max-width: 480px) {
  .policy-header h1 {
    font-size: 1.6rem;
  }

  .policy-content h1 {
    font-size: 1.4rem;
  }

  .policy-content h2 {
    font-size: 1.2rem;
  }

  .policy-content h3 {
    font-size: 1rem;
  }
}

/* Extra Small Mobile (below 360px) */
@media (max-width: 360px) {
  .policy-header h1 {
    font-size: 1.5rem;
  }

  .policy-content h1 {
    font-size: 1.3rem;
  }
}
