body {
    background-color: #f9fafb; /* bg-gray-50 */
    color: #1f2937; /* text-gray-900 */
}

/* 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 */
}

/* Fix for very narrow screens (e.g., <= 400px) to prevent overflow */
@media (max-width: 400px) {    
    .grid-container {
        gap: 1.5rem; /* Reduced from 3rem (gap-12) */
    }

    .contact-detail .email {
        word-break: break-all;
    }
}

@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 Styles */
.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 */
    font-weight: 700; /* font-bold */
}
.header p {
    font-size: 1.125rem; /* text-lg */
    color: #4b5563; /* text-gray-600 */
}

@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;
    }
}


.header a {
    color: #4b5563; /* text-gray-600 */
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
}

.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;
}
.back-button:hover {
    background-color: #f3f4f6; /* hover:bg-gray-100 equivalent */
}
.arrow-icon {
    margin-right: 0.25rem;
    width: 1rem;
    height: 1rem;
    display: inline-block;
}

/* Grid Layout */
.grid-container {
    display: grid;
    gap: 3rem; /* gap-12 */
}
/* Note: The fix above for max-width 400px overrides the gap for very small screens */

@media (min-width: 1024px) {
    .grid-container {
        grid-template-columns: repeat(2, minmax(0, 1fr)); /* lg:grid-cols-2 */
    }
}

/* Card Styles */
.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 */
}
.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}
.card-title {
    font-size: 1.25rem; /* text-xl */
    font-weight: 600; /* font-semibold */
    margin-bottom: 0.25rem;
}
.card-description {
    color: #6b7280; /* text-gray-600 */
    font-size: 0.875rem; /* text-sm */
}
.card-content {
    padding: 1.5rem;
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem; /* gap-4 */
}
@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, minmax(0, 1fr)); /* md:grid-cols-2 */
    }
}
.form-group label {
    display: block;
    font-weight: 500; /* font-medium */
    margin-bottom: 0.25rem;
    font-size: 0.875rem; /* text-sm */
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.625rem 1rem;
    border: 1px solid #d1d5db; /* border-gray-300 */
    border-radius: 0.375rem; /* rounded-md */
    box-sizing: border-box; /* Crucial for preventing input overflow */
    font-size: 1rem;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #10b981; /* focus:border-green-500 */
    outline: none;
    box-shadow: 0 0 0 1px #10b981; /* focus:ring-green-500 equivalent */
}
.form-group textarea {
    min-height: 120px;
    resize: vertical;
}
.submit-button {
    width: 100%;
    padding: 0.75rem 1.5rem; /* size="lg" equivalent */
    font-size: 1.125rem; /* text-lg */
    font-weight: 600;
    color: white;
    background-color: #16a34a; /* bg-green-600 */
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.15s;
    border: 1px solid #16a34a;
}

.submit-button:hover {
    background-color: #15803d;
}

/* Contact Info Styles */
.contact-detail {
    display: flex;
    align-items: flex-start; /* items-start */
    column-gap: 0.75rem; /* space-x-3 */
}
.contact-icon {
    font-size: 25px;
    width: 1.7rem;
    color: #9ca3af; /* text-gray-400 */
    margin-top: 0.25rem; /* mt-1 */
    display: inline-block;
}

.contact-detail p {
    margin: 0;
    line-height: 1.5;
}

.contact-detail a {
    text-decoration: none;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.contact-detail .font-medium {
    font-weight: 500;
}
.contact-detail .text-gray-600 {
    color: #4b5563;
}

/* Leadership Styles */
.leadership-item {
    display: flex;
    align-items: center;
    column-gap: 1rem; /* space-x-4 */
}
.leadership-icon-wrapper {
    border-radius: 9999px; /* rounded-full */
    padding: 0.75rem; /* p-3 */
}

.leadership-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.5rem; /* h-6 w-6 */
    height: 1.5rem;
}

.leadership-icon i {
    font-size: 25px;
}
.green-bg {
    background-color: #d1fae5; /* bg-green-100 */
}
.green-text {
    color: #059669; /* text-green-600 */
}
.blue-bg {
    background-color: #eff6ff; /* bg-blue-100 */
}
.blue-text {
    color: #2563eb; /* text-blue-600 */
}
.leadership-item h4 {
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}
.leadership-item p {
    font-size: 0.875rem; /* text-sm */
    color: #4b5563;
    margin: 0;
}
.committee-info {
    background-color: #f9fafb; /* bg-gray-50 */
    padding: 1rem;
    border-radius: 0.5rem;
}
.committee-info p {
    font-size: 0.875rem;
    color: #4b5563;
    margin: 0;
}

/* Logo Card Styles */
.logo-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
}
.logo-image {
    width: 6rem; /* w-24 h-24 */
    height: 6rem;
    border-radius: 9999px; /* rounded-full */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-lg */
    margin-bottom: 1rem;
    /* Placeholder styles for exampleImage */
    background-color: #10b981; /* A green color for placeholder */
    object-fit: cover;
    border: 3px solid #ffffff;
}
.logo-card-content h3 {
    font-weight: 600;
    font-size: 1.125rem; /* text-lg */
    margin-bottom: 0.5rem;
}
.logo-card-content p {
    color: #4b5563;
    font-size: 0.875rem;
    margin: 0;
}

/* Call to Action Section */
.cta-section {
    background-color: #f9fafb;
    padding: 2rem;
    padding-top: 0;
    text-align: center;
}

@media (max-width: 450px) {
    .cta-section {
        padding: 0;
        margin-top: 0;
    }

    .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;
}