/* ==========================================
   POLICY PAGES STYLES
   Enhanced design with bold titles and better typography
   ========================================== */

/* Policy Banner */
.policy-banner {
  background: linear-gradient(135deg, rgba(228, 90, 42, 0.08) 0%, rgba(255, 138, 61, 0.05) 100%);
  padding: 60px 0 50px;
  border-bottom: 1px solid rgba(228, 90, 42, 0.1);
}

.policy-banner-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.policy-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(228, 90, 42, 0.2);
}

.policy-icon i {
  font-size: 36px;
  color: #fff;
}

.policy-title {
  font-size: 42px;
  font-weight: 900;
  color: var(--neutral-900);
  margin: 0 0 16px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.policy-subtitle {
  font-size: 18px;
  color: var(--neutral-600);
  margin: 0;
  line-height: 1.6;
  font-weight: 400;
}

/* Policy Page Content */
.policy-page {
  background: var(--white);
}

.policy-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

/* Typography Enhancements */
.policy-content h1,
.policy-content h2,
.policy-content h3,
.policy-content h4 {
  font-weight: 900;
  color: var(--neutral-900);
  margin-top: 32px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.policy-content h1 {
  font-size: 32px;
  border-bottom: 3px solid var(--primary-green);
  padding-bottom: 12px;
  margin-top: 0;
}

.policy-content h2 {
  font-size: 28px;
  color: var(--primary-green);
  margin-top: 40px;
}

.policy-content h3 {
  font-size: 22px;
  margin-top: 32px;
}

.policy-content h4 {
  font-size: 18px;
  margin-top: 24px;
}

.policy-content p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--neutral-700);
  margin-bottom: 16px;
}

.policy-content strong,
.policy-content b {
  font-weight: 900;
  color: var(--neutral-900);
}

.policy-content ul,
.policy-content ol {
  margin: 20px 0;
  padding-right: 24px;
}

.policy-content li {
  font-size: 16px;
  line-height: 1.85;
  color: var(--neutral-700);
  margin-bottom: 12px;
  padding-right: 8px;
}

.policy-content ul li::marker {
  color: var(--primary-green);
  font-weight: 900;
}

.policy-content ol li::marker {
  color: var(--primary-green);
  font-weight: 900;
}

.policy-content a {
  color: var(--primary-green);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}

.policy-content a:hover {
  color: var(--dark-green);
}

.policy-content blockquote {
  border-right: 4px solid var(--primary-green);
  padding: 16px 20px;
  margin: 24px 0;
  background: rgba(228, 90, 42, 0.05);
  border-radius: 8px;
  font-style: italic;
  color: var(--neutral-700);
}

.policy-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.policy-content table th {
  background: var(--primary-green);
  color: #fff;
  font-weight: 900;
  padding: 16px;
  text-align: right;
}

.policy-content table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--neutral-700);
}

.policy-content table tr:last-child td {
  border-bottom: none;
}

.policy-content table tr:nth-child(even) {
  background: rgba(228, 90, 42, 0.02);
}

/* Highlight boxes */
.policy-content .highlight-box {
  background: linear-gradient(135deg, rgba(228, 90, 42, 0.08), rgba(255, 138, 61, 0.05));
  border: 1px solid rgba(228, 90, 42, 0.15);
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0;
}

.policy-content .highlight-box strong {
  display: block;
  color: var(--primary-green);
  margin-bottom: 8px;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .policy-banner {
    padding: 40px 0 32px;
  }

  .policy-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }

  .policy-icon i {
    font-size: 28px;
  }

  .policy-title {
    font-size: 32px;
  }

  .policy-subtitle {
    font-size: 16px;
  }

  .policy-content {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .policy-content h1 {
    font-size: 26px;
  }

  .policy-content h2 {
    font-size: 22px;
  }

  .policy-content h3 {
    font-size: 20px;
  }

  .policy-content p,
  .policy-content li {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .policy-banner {
    padding: 32px 0 24px;
  }

  .policy-icon {
    width: 56px;
    height: 56px;
  }

  .policy-icon i {
    font-size: 24px;
  }

  .policy-title {
    font-size: 26px;
  }

  .policy-subtitle {
    font-size: 15px;
  }

  .policy-content {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .policy-content h1 {
    font-size: 22px;
  }

  .policy-content h2 {
    font-size: 20px;
  }

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