.culture-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.culture-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(108, 19, 251, 0.3);
}
