/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* Volunteer section container */
.volunteer-section {
    display: flex;
    width: 100%;
    max-width: 1430px;
    height: 920px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    margin: 55px auto;
    background-color: #fff;
}

/* Main container */
.volunteer-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 0 0;
    border-radius: 12px;
    width: 100%;
    background-color: #ffffff;
}

/* Hero header section */
.hero-header {
    display: flex;
    padding: 35px 55px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    align-self: stretch;
    width: 100%;
    background-color: #effff6;
    border: .5px solid #D9E8E0;
    border-radius: 16px;
}

/* Hero title */
.hero-title {
    color: #fff;
    text-align: center;
    font-feature-settings: "dlig" on;
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: -2px;
    align-self: stretch;
    min-height: 610px;
    padding: 25px 43px;
    border-radius: 12px;
    background: linear-gradient(179deg,
            rgba(0, 0, 0, 0.034) 1.87%,
            rgba(0, 0, 0, 0.521) 95.69%),
        url("https://cdn.builder.io/api/v1/image/assets/TEMP/ac3d0a6393e711118ed13141344050dba646b8a5?placeholderIfAbsent=true") lightgray 50% / cover no-repeat;
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
}

/* Content wrapper */
.content-wrapper {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
}

/* Cards container */
.cards-container {
    display: flex;
    height: 170px;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
    justify-content: space-around;
}

/* Info card */
.info-card {
    display: flex;
    width: 380px;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid #d9e8e0;
    background-color: #EFFFF6;
}

/* Card icon */
.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 25px;
}

/* Card content */
.card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
}

/* Card title */
.card-title {
    align-self: stretch;
    color: #0f1714;
    font-feature-settings: "dlig" on;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
}

/* Card description */
.card-description {
    align-self: stretch;
    color: #5e8c73;
    font-feature-settings: "dlig" on;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
}

/* Button container */
.button-container {
    display: flex;
    width: 104px;
    height: 49px;
    align-items: center;
    gap: 15px;
    margin: 0 35px;
}

/* Donate button */
.donate-button {
    height: 44px;
    padding: 10px 24px;
    gap: 10px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    background-color: #00682f;
}

/* Responsive styles */
@media (max-width: 991px) {
    .volunteer-section {
        height: auto;
        padding: 20px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 44px;
        letter-spacing: -1.5px;
    }

    .cards-container {
        flex-direction: column;
        height: auto;
        gap: 16px;
    }

    .info-card {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .hero-header {
        padding: 15px 13px;
    }

    .volunteer-section {
        padding: 16px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: 0px;
        padding: 15px 20px;
        min-height: 250px;
    }

    .content-wrapper {
        padding: 12px;
    }

    .info-card {
        padding: 12px;
    }

    .card-title {
        font-size: 14px;
        line-height: 18px;
    }

    .card-description {
        font-size: 12px;
        line-height: 18px;
    }

    .donate-button {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }

    .button-container {
        margin: 0;
    }
}