.container_3 {
    padding-top: 40px;
}

section {
    padding-top: 40px;
}

.section-title {
    text-align: center;
    font-family: Arial, sans-serif;
}

section h2 {
    font-size: 2rem;
    margin-top: 25px;
}

.card h3 {
    font-size: 18px;
    font-family: Arial, sans-serif;
    margin-bottom: 15px;
}

.card p {
    font-size: 18px;
    font-family: Arial, sans-serif;
    margin-top: 0px;
}


section .cards {
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 10px;
    padding: 0 10px;
}

section .card {
    width: calc(100% / 3 - 30px);
    text-align: center;
    list-style: none;
    background-color: #fff;
    padding: 40px 15px;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.04);
    margin-bottom: 40px;
    box-sizing: border-box;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

section .card::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

section .card:hover::before {
    opacity: 1;
}

section .card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

section .card img {
    height: 120px;
    width: 120px;
    border-radius: 50%;
    margin-bottom: 5px;
}

section .card p {
    margin-top: 5px;
    font-family: Arial, sans-serif;
}

@media (max-width: 1380px) {
    section .cards .card {
        width: calc(100% / 2 - 15px);
    }
    .card h3, .card p {
        font-size: 16px;
    }

    .card p {
        font-size: 15px;
    }
}


@media (max-width: 704px) {
    section .cards .card {
        width: 100%;
        margin: 0 0 17px 0;
    }


    section .card img {
        height: 90px;
        width: 90px;
    }

    .card h3, .card p {
        font-size: 17px;
    }

    .card p {
        font-size: 17px;
    }

    .section-title {
        font-size: 14px;
    }

    section h2 {
        font-size: 25px;
    }

}

