.horizontal-card {
    align-items: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.08);
}

.horizontal-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e67e21;
    color: white;
    font-size: 2rem;
    margin-right: 2rem;
    transition: all 0.3s ease;
}

.horizontal-card:hover .icon-wrapper {
    transform: rotate(360deg);
}