

/* Aide Header */
#aide-header {
    background-image: url(img/aide/nousaidez.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
}


.breadcrumb {
    background-color: transparent;
    margin-top: 20px;
}

.breadcrumb-item a {
    color: #4e2d18;
}

.breadcrumb-item.active {
    color: white;
}

/* 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: #4e2d18;
    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: #4e2d18;
    margin-bottom: 20px;
}

#ways-to-help p {
    color: #4e2d18;
    margin-bottom: 20px;
}

#ways-to-help, #join-form-section{
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}