.angie-flip-card {
    perspective: 1000px;
    background-color: transparent;
    min-height: 250px;
}
.angie-flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}
.angie-flip-card:hover .angie-flip-card-inner {
    transform: rotateY(180deg);
}
.angie-flip-card-front, .angie-flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    top: 0;
    left: 0;
}
.angie-flip-card-front {
    z-index: 2;
    display: flex;
    flex-direction: column;
}
.angie-flip-card-back {
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1;
}