/* Hero Section Styles */
.hero {
    background: url('../img/hero-donate.jpeg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.introduction {
    font-size: 20px;
    line-height: 1.6;
    color: #666;
    padding: 40px;
    text-align: center;
    background-color: #ffffff; /* White background for the section */
}

/* Responsive Styles */
@media(max-width: 860px) {
    .hero {
        height: calc(100vh - 130px);
    }

    .hero h1 {
        font-size: 26px;
    }

    .introduction {
        font-size: 17px;
    }

}