/* Container for cards to display side by side */
.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.card {
    width: 190px;
    height: 254px;
    background-color: #3F4E4F !important;
    border-radius: 15px;
    box-shadow: 1px 5px 60px 0px #100a886b;
    /* Removed flex: 1 and individual margins */
}

.card .card-border-top {
    width: 60%;
    height: 3%;
    background-color: #2C3639;
    margin: auto;
    border-radius: 0px 0px 15px 15px;
}

.card span {
    font-weight: 600;
    color: #DCD7C9;
    text-align: center;
    display: block;
    padding-top: 10px;
    font-size: 16px;
}

.card .job {
    font-weight: 400;
    color: #DCD7C9;
    display: block;
    text-align: center;
    padding-top: 3px;
    font-size: 12px;
}

.card .img {
    width: 70px;
    height: 80px;
    background-color: #2C3639;
    border-radius: 15px;
    margin: auto;
    margin-top: 25px;
}

.card button {
    padding: 8px 25px;
    display: block;
    margin: auto;
    border-radius: 8px;
    border: none;
    margin-top: 30px;
    background-color: #2C3639;
    color: #DCD7C9;
    font-weight: 600;
}

.card button:hover {
    background-color: #A27B5C;
    transition: all 0.4s ease;
    transform: scale(1.25);
}

.card button a {
    color: #DCD7C9;
    text-decoration: none;
}
.pic {
    width: 70px;
    height: 80px;
    border-radius: 15px;
}
