/* Hero Section */
.hero-section {
    height: 25vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
}

.hero-text {
    position: relative; /* To be on top of the overlay */
    z-index: 2;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 600;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

@media screen and (max-width: 600px) {
    .hero-section {
        height: 40vh;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
}

/* Donation Content Section */
.donation-content-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.donation-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: stretch; /* Allow flex items to stretch to fill the height */
    gap: 50px;
}

.donation-text {
    flex: 1;
    min-width: 300px;
}

.donation-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 3px solid #d1882f;
    padding-bottom: 10px;
    display: inline-block;
}

.donation-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.donation-image {
    flex: 1;
    min-width: 300px;
}

.donation-image img {
    width: 100%;
    height: 100%; /* Make image fill the height of its container */
    object-fit: cover; /* Crop the image to cover the area while maintaining aspect ratio */
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

@media screen and (max-width: 768px) {
    .donation-container {
        flex-direction: column;
    }

    .donation-text h2 {
        font-size: 2rem;
    }
}

.signature {
    margin-top: 40px;
    text-align: right;
    font-style: italic;
    color: #444;
}

.signature p {
    margin-bottom: 5px;
}