#volunteer{
    display: flex;
    gap: 2rem;
    margin-top: 40px;
    padding: 3rem 2.5rem;
}
#volunteer > div{
    width: 48.5%;
}
.volunteer-left h1{
    font-family: var(--header-font-family);
    font-size: 3rem;
    font-weight: 700;
}
.volunteer-left > p{
    font-size: 1.12rem;
    color: #494949;
    font-family: var(--main-font-family);
}
.volunteer-left ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.volunteer-left ul li{
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    font-family: var(--main-font-family);
}
.volunteer-left ul span{
    display: block;
}
.volunteer-left ul i{
    color: var(--secondary-color);
    font-size: 1.5rem;
}
.volunteer-description{
    color: #6B6B6B;
}

.volunteer-right img{
    max-width: 100%;
    border-radius: 1.5rem;
}

.volunteer-left a{
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--secondary-color);
    color: var(--main-color);
    text-decoration: none;
    font-family: var(--main-font-family);
    border-radius: 50px;
    font-weight: 500;
}
.transformation-down{
    flex-wrap: wrap;
}
.transformation-down-list{
    display: flex;
    justify-content: center;
    gap: 2rem;
    height: auto;
    width: 30%;
    padding: 2.5rem;
}

@media (max-width: 600px) {
    #volunteer{
        display: block;
        padding: 1.5rem 1.2rem;
    }
    #volunteer > div{
        width: 100%;
        margin-top: 1.5rem;
    }
    #transformation{
        padding: 1rem;
    }
    .transformation-down-list{
        width: 100%
    }
}