.tab-containerfamily {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}
.tab-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: transform 0.3s, border 0.3s;
}
.tab-image:hover {
    transform: scale(1.1);
}
.tab-image.active {
    border: 3px solid #C58B08;
}
.family-section {
    margin-top: 20px;
}
.hidden {
    display: none;
}
.family-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 10px 0;
    flex-wrap: wrap;
}
.cardfamily {
    width: 200px;
    height: 120px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.cardfamily:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 15px rgba(197, 139, 8, 0.5);
}





