/* PILLAR IMAGES POSITIONING FIX */
.pillar-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center top;
    border-radius: 8px;
    transform: scale(0.9);
    transition: all 0.3s ease;
    margin: 1rem 0;
}

.pillar-image:hover {
    transform: scale(0.95);
}

/* Specific positioning adjustments */
.pillar-card[data-pillar="1"] .pillar-image {
    object-position: center 20%;
    transform: scale(0.85);
}

.pillar-card[data-pillar="2"] .pillar-image {
    object-position: center 15%;
    transform: scale(0.85);
}

.pillar-card[data-pillar="3"] .pillar-image {
    object-position: center 25%;
    transform: scale(0.85);
}

.pillar-card[data-pillar="5"] .pillar-image {
    object-position: center 20%;
    transform: scale(0.85);
}

.pillar-card[data-pillar="6"] .pillar-image {
    object-position: center 30%;
    transform: scale(0.85);
}

/* Prevent pixelation and improve quality */
.pillar-image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
}