/* Info Pages Styling - Beautiful & WCAG Compliant */

/* Page wrapper - clean background */
.page.page-content {
  background: #fafbfd;
  padding: 60px 0;
  min-height: 80vh;
}

.page-content .container {
  max-width: 900px;
  background: white;
  padding: 50px 40px;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

/* Page title - centered, green, WCAG AAA */
.page-title {
  font-size: 38px;
  font-weight: 700;
  color: #1e6b3a;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
  padding-bottom: 20px;
  border-bottom: 4px solid #e6f7ed;
}

/* Lead box - highlighted intro */
.lead-box {
  background: linear-gradient(135deg, #f0f9f4 0%, #e6f7ed 100%);
  border-left: 6px solid #1e6b3a;
  padding: 28px 32px;
  margin-bottom: 50px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(30, 107, 58, 0.08);
}

.lead-box p {
  font-size: 19px;
  line-height: 1.7;
  color: #1a5a2e;
  margin: 0;
}

.lead-box strong {
  color: #1e6b3a;
  font-weight: 700;
}

/* Section headings - green theme, WCAG AAA */
.page-content h2 {
  font-size: 30px;
  font-weight: 700;
  color: #1e6b3a;
  margin-top: 55px;
  margin-bottom: 24px;
  line-height: 1.3;
  padding-bottom: 12px;
  border-bottom: 3px solid #e6f7ed;
}

.page-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2f855a;
  margin-top: 40px;
  margin-bottom: 18px;
  line-height: 1.4;
}

/* Paragraphs - optimal readability */
.page-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #2c3e50;
  margin-bottom: 22px;
}

/* Lists - better spacing and visual hierarchy */
.page-content ul {
  margin: 24px 0 32px 0;
  padding-left: 28px;
}

.page-content li {
  font-size: 17px;
  line-height: 1.8;
  color: #2c3e50;
  margin-bottom: 16px;
  padding-left: 8px;
}

.page-content li strong {
  color: #1e6b3a;
  font-weight: 700;
}

/* Document boxes - professional look */
.document-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 2px solid #e9ecef;
  border-left: 6px solid #1e6b3a;
  padding: 28px 32px;
  margin: 32px 0;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.document-box:hover {
  box-shadow: 0 6px 20px rgba(30, 107, 58, 0.12);
  border-left-color: #2f855a;
  transform: translateX(4px);
}

.document-box h3 {
  color: #1e6b3a;
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 18px;
  font-weight: 700;
}

.document-box ul {
  margin-bottom: 0;
}

/* Alert boxes - color-coded for importance */
.alert-box {
  background: linear-gradient(135deg, #fff8e1 0%, #fff9e6 100%);
  border-left: 6px solid #ffc107;
  padding: 24px 32px;
  margin: 35px 0;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.12);
}

.alert-box h3 {
  color: #e65100;
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 14px;
  font-weight: 700;
}

.alert-box p {
  color: #663c00;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

/* Info boxes - blue theme */
.info-box {
  background: linear-gradient(135deg, #e3f2fd 0%, #e8f4fd 100%);
  border-left: 6px solid #1976d2;
  padding: 28px 32px;
  margin: 35px 0;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.12);
}

.info-box h3 {
  color: #0d47a1;
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 18px;
  font-weight: 700;
}

.info-box p,
.info-box li {
  color: #0d47a1;
  font-size: 16px;
  line-height: 1.8;
}

.info-box ul {
  margin-bottom: 0;
}

/* Important notice - yellow warning */
.important-notice {
  background: linear-gradient(135deg, #fff3cd 0%, #fff8d9 100%);
  border-left: 6px solid #ff9800;
  padding: 24px 32px;
  margin: 40px 0;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.12);
  font-size: 16px;
  line-height: 1.8;
  color: #663c00;
}

.important-notice strong {
  color: #e65100;
  font-weight: 700;
}

/* CTA box - call to action */
.cta-box {
  background: linear-gradient(135deg, #1e6b3a 0%, #2f855a 100%);
  padding: 45px 40px;
  border-radius: 12px;
  text-align: center;
  color: white;
  box-shadow: 0 8px 24px rgba(30, 107, 58, 0.25);
  margin: 55px 0;
  transition: transform 0.3s ease;
}

.cta-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30, 107, 58, 0.3);
}

.cta-box h3 {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 18px;
  margin-top: 0;
  line-height: 1.2;
}

.cta-box p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-box .btn {
  background: white;
  color: #1e6b3a;
  padding: 18px 48px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 2px solid transparent;
}

.cta-box .btn:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-box .btn:focus {
  outline: 3px solid rgba(255, 255, 255, 0.6);
  outline-offset: 4px;
}

/* Disclaimer - subtle footer note */
.disclaimer {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-left: 5px solid #6c757d;
  padding: 24px 32px;
  margin-top: 60px;
  border-radius: 10px;
  font-size: 15px;
  color: #495057;
  line-height: 1.8;
}

.disclaimer p {
  margin: 0;
  font-size: 15px;
}

.disclaimer strong {
  color: #2c3e50;
  font-weight: 700;
}

/* Links - accessible colors */
.page-content a {
  color: #1e6b3a;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}

.page-content a:hover {
  color: #2f855a;
  text-decoration: none;
}

.page-content a:focus {
  outline: 3px solid #1e6b3a;
  outline-offset: 2px;
  border-radius: 2px;
}

/* Responsive - Mobile optimized */
@media (max-width: 768px) {
  .page-content .container {
    padding: 35px 24px;
    border-radius: 8px;
  }

  .page-title {
    font-size: 30px;
    margin-bottom: 30px;
    padding-bottom: 16px;
  }

  .lead-box {
    padding: 22px 24px;
  }

  .lead-box p {
    font-size: 17px;
  }

  .page-content h2 {
    font-size: 26px;
    margin-top: 45px;
  }

  .page-content h3 {
    font-size: 21px;
  }

  .page-content p {
    font-size: 16px;
  }

  .page-content li {
    font-size: 16px;
  }

  .document-box,
  .info-box,
  .alert-box,
  .important-notice {
    padding: 20px 24px;
    border-radius: 8px;
  }

  .cta-box {
    padding: 35px 24px;
  }

  .cta-box h3 {
    font-size: 26px;
  }

  .cta-box p {
    font-size: 16px;
  }

  .cta-box .btn {
    padding: 16px 36px;
    font-size: 16px;
  }
}

/* Print styles */
@media print {
  .cta-box,
  .btn {
    display: none;
  }

  .page-content .container {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}
