body {
  background-color: #f9fafb;
}

/* Utility Classes Approximation */
.container {
  max-width: 1280px; /* max-w-7xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem; /* px-4 */
  padding-right: 1.5rem; /* px-4 */
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem; /* lg:px-8 */
    padding-right: 2rem; /* lg:px-8 */
  }
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.space-y-6 > * + * {
  margin-top: 1.5rem;
}
.space-y-8 > * + * {
  margin-top: 2rem;
}
.space-y-4 > * + * {
  margin-top: 1rem;
}

.header {
  background-color: #ffffff; /* bg-white */
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
}
.header h1 {
  font-size: 1.875rem; /* text-3xl */
  line-height: 2.25rem;
  font-weight: 700; /* font-bold */
  color: #111827;
}
.header p {
  font-size: 1.125rem; /* text-lg */
  line-height: 1.75rem;
  color: #4b5563; /* text-gray-600 */
  margin-top: 0.5rem;
}

@media (max-width: 640px) {
  .header h1 {
    font-size: 1.5rem; /* text-2xl */
    line-height: 2rem;
  }
  .header p {
    font-size: 1rem; /* text-base */
    line-height: 1.5rem;
  }
}

.back-button {
  border: none;
  background: none;
  color: #4b5563; /* text-gray-600 */
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  transition: background-color 0.15s;
  text-decoration: none; /* For when using an anchor tag */
  margin-bottom: 1rem; /* mb-4 equivalent */
}

.header a {
  color: #4b5563; /* text-gray-600 */
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}

.back-button:hover {
  background-color: #f3f4f6; /* hover:bg-gray-100 equivalent */
  color: #111827; /* Darker text on hover */
}
.arrow-icon {
  margin-right: 0.25rem;
  width: 1rem;
  height: 1rem;
  display: inline-block;
}
/* --- END OF PROVIDED HEADER STYLES --- */

/* Container & Layout */
.min-h-screen {
  min-height: 100vh;
}

.header-content {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 1rem;
}

@media (min-width: 640px) {
  .header-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .header-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.main-container {
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem 1.5rem;
  padding-bottom: 0;
}

@media (min-width: 640px) {
  .main-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .main-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Image and Prose Content (Re-using styles from before) */
.sector-image {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .sector-image {
    height: 30rem;
  }
}

.prose {
  line-height: 1.75;
}

.prose h2 {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose p {
  color: #374151;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  padding-left: 0;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.prose li {
  margin-bottom: 0.5rem;
  color: #374151;
}

.card {
  background-color: #ffffff;
  border-radius: 0.5rem; /* rounded-lg */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb; /* border-gray-200 equivalent */
}

/* Call to Action Section */
.cta-section {
  background-color: #f9fafb;
  padding: 2rem;
  padding-top: 3rem;
  text-align: center;
}

@media (max-width: 450px) {
  .cta-section {
    padding: 0;
    margin-top: 2rem;
  }

  .cta-section .card {
    padding: 1.5rem;
    border-radius: 0;
  }

  .cta-button {
    padding: 8px 16px;
    font-size: small;
  }
}

.cta-section .card {
  padding: 3rem;
}

.cta-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: rgb(16, 24, 40);
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 30px;
  }
}

.cta-description {
  color: #6b7280;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.cta-button {
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.cta-donate-btn {
  background-color: #16a34a;
  color: #fff;
  border: 1px solid #16a34a;
}

.cta-donate-btn:hover {
  background-color: #15803d;
}

.cta-contact-btn {
  background-color: #fff;
  color: #1f2937;
  border: 1px solid #d1d5db;
}

.cta-contact-btn:hover {
  background-color: #f3f4f6;
}
