body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #e6f3e6; /* Light green background */
}

.header {
    text-align: center;
    background-image: url('/images/header_grass_01.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 20px;
    border-radius: 10px;
    position: relative;
    margin-bottom: 20px;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.header h1 {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}


.bio-section {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    background-color: #f0f8f0; /* Lighter green background */
    padding: 20px;
    border-radius: 10px;
}

.photo-carousel {
    flex: 0 0 auto;
    width: 400px;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 16 / 9;
}

.carousel-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-bottom: 122.86%; /* (720 / 586) * 100% */
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    width: 100%;
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.carousel-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    text-decoration: none;
    border-radius: 5px;
    z-index: 10;
}

.carousel-control.prev { left: 10px; }
.carousel-control.next { right: 10px; }

.bio-content {
    flex: 1;
}

.fundraising-section {
    background-color: #f0f8f0; /* Lighter green background */
    padding: 20px;
    border-radius: 10px;
}

.call-to-action {
    background-color: #FFA500;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 24px;
    border-radius: 10px;
    margin: 20px 0;
}

.progress-container {
    background-color: #d4e6d4; /* Slightly darker than the sections, but lighter than the body */
    border-radius: 15px;
    margin: 20px 0;
}

.progress-bar {
    width: 0%;
    height: 30px;
    background-color: #4CAF50;
    border-radius: 15px;
    text-align: center;
    line-height: 30px;
    color: white;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
    transition: all 1.5s ease-in-out;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

th {
    background-color: #4CAF50;
    color: white;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

@media (max-width: 768px) {
    .bio-section {
        flex-direction: column;
    }

    .photo-carousel, .bio-content {
        width: 100%;
    }

    .photo-carousel {
        max-width: 400px;
        margin: 0 auto 20px;
    }
}

.fundraising-section table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #f9fcf9;  /* Light green tinted background */
}

.fundraising-section table th,
.fundraising-section table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e8e8e8;
}

.fundraising-section table th {
    background-color: #4CAF50;  /* Green header background */
    color: white;  /* White text for headers */
    font-weight: bold;
}

.fundraising-section table tbody tr:nth-child(odd) {
    background-color: #ffffff;  /* White background for odd rows */
}

.fundraising-section table tbody tr:nth-child(even) {
    background-color: #f5f9f5;  /* Very light green for even rows */
}

/* Align amount columns to the right */
.fundraising-section table th:nth-child(2),
.fundraising-section table td:nth-child(2) {
    text-align: right;
}

/* Responsive table */
@media screen and (max-width: 600px) {
    .fundraising-section table th,
    .fundraising-section table td {
        padding: 8px;
    }
}