

@media (max-width: 768px) {
    #mobileArea{
         display: block;
         background-image: url(img/home/coverMobile.webp);
         background-size: contain !important;
         background-repeat: no-repeat;
         height: 50VH;
         margin-top: 17VH;
 }

 #carouselArea{
     display: none !important;
 }
 
 #ways-to-help{
     margin-top:-11VH;
 }
}

/* Ways to Help Section */
#ways-to-help .help-option {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

#ways-to-help .help-option:hover {
    transform: translateY(-10px);
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
}

#ways-to-help i {
    font-size: 3rem;
    color: black;
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}

#ways-to-help i:hover {
    transform: rotate(360deg);
}

#ways-to-help h3 {
    font-size: 1.8rem;
    color: black;
    margin-bottom: 20px;
}

#ways-to-help p {
    color: black;
    margin-bottom: 20px;
}

#ways-to-help, #join-form-section{
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}