.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 200px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.image-content {
    padding: 100px;
}

.image-content__text p {
    color: #000;
}

.image-content__text h2 {
    font-size: 50px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1114px;
    color: #fff;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
}

.donation-steps {
    padding: 0 100px 100px 100px;
    background: #fff;
}

.donation-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.donation-card {
    background: #FEFBE9;
    border-radius: 16px;
    padding: 30px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.1);
    /* light black */
}

section.image-content {
    background: #fff !important;
    padding-bottom: 50px;
}

.donation-card__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
}

.donation-card__text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.donation-card__image {
    display: flex;
    justify-content: center;
    /* horizontal center */
}

.donation-card__image img {
    width: 100%;
    max-width: 337px;
    border-radius: 10px;
}

.donation-card__text p {
    margin-bottom: 20px;
}

.donation-card__text p:last-of-type {
    margin-bottom: 0;
}

.donation-card__text p:last-child {
    margin-bottom: 20px;
}

.image-content__media.desktop {
    display: flex;
}

.image-content__media.tablet {
    display: none;
}

.image-content__wrapper>div {
    width: 50%;
}

@media (max-width: 1199px) {
    .image-content__inner {
        grid-template-columns: 1fr;
        /* Stack vertically */
        gap: 40px;
    }
    .image-content__title {
        font-size: 42px;
        margin-bottom: 25px;
    }
    .image-content__media.desktop {
        display: none;
    }
    .image-content__media.tablet {
        display: flex;
        margin-bottom: 30px;
    }
    .image-content__wrapper>div {
        width: 100%;
    }
    section.image-content {
        padding-bottom: 50px !important;
    }
}


/* Responsive */

@media (max-width: 991px) {
    .donation-steps__grid {
        grid-template-columns: 1fr;
    }
    .donation-card {
        min-height: auto;
    }
}

@media (max-width:1199px) {
    .donation-steps {
        padding: 0 30px 70px 30px;
    }
}

@media (max-width:767px) {
    .donation-steps {
        padding: 0 20px 50px 20px;
    }
    .hero-content h1 {
        font-size: 40px;
    }
    .donation-steps a {
        overflow-wrap: anywhere;
    }
    section.image-content {
        padding-bottom: 50px !important;
    }
}