.section-get-involved {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fbfcfd;
    gap: 16px;
    padding-top: 120px;
}

.get-involved__title {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
    max-width: 560px;
    text-wrap: balance;

    a {
        color: var(--color-text-deep-blue);
    }
}

.get-involved__content {
    display: flex;
    flex-direction: column;
    padding-block: 32px;
    gap: 32px;
    align-items: center;
    background: var(--background-color-white);
}

.get-involved__card-list {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;


}

.get-involved__card-item {
    background: var(--background-color-light-blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-md);
    border: 1px solid var(--border-color-gray);
    border-radius: var(--border-radius-15);
    width: clamp(300px, 100%, 370px);

    h3 {

        text-align: center;
    }

    p {
        text-align: center;
        margin-top: 16px;
        margin-bottom: 10px;
    }
}

.get-involved__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;

    h3 {
        color: var(--color-text-gray);
    }
}

.get-involved__contacts {
    display: flex;
    gap: 16px;
    color: var(--color-text-deep-blue);
}


@media (width<768px) {
    .get-involved__card-list {
        flex-direction: column;
    }
}

@media (width <=425px) {


    .get-involved__contacts {
        width: 100%;
        flex-direction: column;
    }
}